Files
openide/java/java-tests/testData/refactoring/makeClassStatic/Simple1.java
Alexey Kudravtsev fbf92e3cb2 fixed tests for Linux
2010-10-06 12:38:54 +04:00

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 {}
}