Files
kotlin-fork/idea/testData/quickfix/changeSignature/jk/jkKeepValOnAddingParameter1.before.Main.java
T
Alexey Sedunov 354a6cbfd9 Change Signature: Keep parameter 'val'/'var' when invoked from Java
#KT-20901 Fixed
 #KT-21159 Fixed
2017-11-30 12:49:24 +03:00

8 lines
129 B
Java
Vendored

// "Add 'int' as 1st parameter to method 'Foo'" "true"
public class J {
void test() {
new Foo(<caret>1, 2);
}
}