Files
openide/java/java-tests/testData/refactoring/introduceParameter/beforeWeirdQualifier.java
T

15 lines
239 B
Java

public class Test {
int method(int i) {
return 0;
}
int m(int i, int j) {
return i + <selection>method(j)</selection>;
}
}
class X {
public int n(int a) {
return (new Test()).m(a, a * 2);
}
}