Files
kotlin/compiler/testData/compileJavaAgainstKotlin/method/Delegation.java
Andrey Breslav 39234b4d3e Delegated members should not be synthetic
Otherwise they are invisible to Java code
2014-01-23 17:59:17 +04:00

7 lines
145 B
Java

class JavaClass {
public static void main(String[] args) {
Test test = new Test();
test.foo();
test.getBar();
}
}