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

14 lines
245 B
Java

public class YoYo {
Object y;
class <caret>YoYoYo {
Object x = y;
Object[] xx = {y};
void foo (){
YoYo yoYoy = YoYo.this;
Object t = y;
Object t1 = yoYoy.y;
}
}
}