Files
kotlin/compiler/testData/codegen/boxAgainstJava/sam/adapters/inheritedSimple.java
2014-06-26 20:57:40 +04:00

9 lines
117 B
Java
Vendored

class Super {
void safeInvoke(Runnable r) {
if (r != null) r.run();
}
}
class Sub extends Super {
}