Files
kotlin-fork/idea/testData/quickfix/changeSignature/jk/jkChangePrimaryConstructorParameter.after.java.201
T
2020-11-28 14:25:58 +03:00

7 lines
146 B
Plaintext
Vendored

// "Change 2nd parameter of method 'K' from 'boolean' to 'String'" "true"
public class J {
void foo() {
new K(1, <caret>"2");
}
}