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

21 lines
368 B
Java

public class YoYo {
int y;
static class YoYoYo {
private YoYo anObject;
public YoYoYo(YoYo anObject) {
this.anObject = anObject;
}
void foo (){
YoYo yoYoy = anObject;
int t = anObject.y;
int t1 = yoYoy.y;
anObject.new Other();
}
}
class Other {}
}