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

20 lines
320 B
Java

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