Files
openide/java/java-tests/testData/refactoring/makeClassStatic/SimpleFields.java
T

12 lines
186 B
Java

public class YoYo {
int y;
class <caret>YoYoYo {
void foo (){
YoYo yoYoy = YoYo.this;
int t = y;
int t1 = yoYoy.y;
}
}
}