mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-10 13:17:09 +07:00
push down: qualify this statement (IDEADEV-38933)
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
class A {
|
||||
void <caret>foo() {
|
||||
new Runnable() {
|
||||
public void run() {
|
||||
A.this.toString();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void leaveIt() {
|
||||
new Runnable() {
|
||||
public void run() {
|
||||
A.this.toString();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class B extends A {
|
||||
}
|
||||
Reference in New Issue
Block a user