Files
kotlin-fork/idea/testData/intentions/convertFunctionToProperty/existingPropertyJavaConflict.1.java
T
2015-02-05 23:12:38 +03:00

12 lines
142 B
Java

import test.A;
class J extends A {
boolean getFoo() {
return true;
}
@Override
int foo() {
return 2;
}
}