Files
kotlin-fork/idea/testData/refactoring/changeSignature/ConstructorJavaUsagesBefore.1.java
T
Alexey Sedunov 1008225116 Change Signature: Processing of non-Kotlin usages
#KT-5810 Fixed
 #KT-4187 Fixed
2014-11-26 13:07:33 +03:00

9 lines
101 B
Java
Vendored

class Foo extends A {
Foo() {
super(2);
}
void foo() {
new A(1);
}
}