mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-13 09:19:13 +07:00
inline method: ensure this qualifier inside inheritor in some nested class (IDEA-194889)
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
abstract class Test {
|
||||
|
||||
void foo() {
|
||||
}
|
||||
}
|
||||
class Test2 extends Test {
|
||||
|
||||
{
|
||||
new Object() {
|
||||
void foo() {
|
||||
Test2.this.foo();
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user