Files
openide/java/java-tests/testData/refactoring/makeClassStatic/simple_after.java
Dmitry Jemerov 7980717db9 test++
2009-09-10 21:54:38 +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 {}
}