mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-17 21:43:33 +07:00
IDEA-238526 Wrong compilation error reported when anonymous class is defined inside private interface method
GitOrigin-RevId: cc0f0ec45152c1923836d6eee770b15685bf15e1
This commit is contained in:
committed by
intellij-monorepo-bot
parent
7016d3be67
commit
788e8bbed1
+10
@@ -0,0 +1,10 @@
|
||||
interface Foo {
|
||||
private void bar() {
|
||||
new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
System.out.println(Foo.this);
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user