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

15 lines
231 B
Java

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