Files
openide/java/java-tests/testData/refactoring/makeClassStatic/SimpleFields_after.java
Alexey Kudravtsev fbf92e3cb2 fixed tests for Linux
2010-10-06 12:38:54 +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;
}
}
}