Files
openide/java/java-tests/testData/refactoring/pushDown/ThisRefInAnonymous_after.java
Roman Shevchenko b4cf161740 Cleanup
2012-09-18 19:34:22 +02:00

21 lines
270 B
Java

class A {
void leaveIt() {
new Runnable() {
public void run() {
A.this.toString();
}
}
}
}
class B extends A {
void foo() {
new Runnable() {
public void run() {
B.this.toString();
}
}
}
}