Files
openide/java/java-tests/testData/refactoring/makeClassStatic/simpleWithFields_after.java
Dmitry Jemerov 7980717db9 test++
2009-09-10 21:54:38 +04:00

20 lines
359 B
Java

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