Files
openide/java/java-tests/testData/refactoring/inplaceIntroduceVariable/replaceAllIntroduceFieldInLocalClass_after.java
T

17 lines
248 B
Java

class Main {
int getSomething() {return 0;}
void testSimple() {
class X {
private final int smth = getSomething();
void test() {
int x = smth;
}
void test2() {
int y = smth;
}
}
}
}