mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
super expression rules should not apply to this expressions (IDEA-163303)
This commit is contained in:
@@ -65,3 +65,19 @@ class Test {
|
||||
}
|
||||
}
|
||||
|
||||
class InsideThisRxpression {
|
||||
interface Foo {
|
||||
void fooMethod();
|
||||
|
||||
default Bar toBar() {
|
||||
return new Bar() {
|
||||
@Override
|
||||
public void fooMethod() {
|
||||
Foo.this.fooMethod();
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
public interface Bar extends Foo {}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user