Files
openide/java/java-tests/testData/refactoring/introduceParameter/beforeStaticFieldAccess.java
Dmitry Jemerov a5f846b4d4 test++
2009-09-10 21:30:46 +04:00

16 lines
233 B
Java

class Test {
public static int i;
int method(int a) {
return <selection>a + i</selection>;
}
}
class X {
public static int i;
int yyy(int z) {
Test t;
return t.method(z);
}
}