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

12 lines
186 B
Java

public class YoYo {
int y;
class <caret>YoYoYo {
void foo (){
YoYo yoYoy = YoYo.this;
int t = y;
int t1 = yoYoy.y;
}
}
}