mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
pull up from anonymous: check for base class type instead of extends list
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
class Test {
|
||||
{
|
||||
I i = new I() {
|
||||
public void fo<caret>o() {}
|
||||
};
|
||||
}
|
||||
|
||||
interface I {}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
class Test {
|
||||
{
|
||||
I i = new I() {
|
||||
@Override
|
||||
public void foo() {}
|
||||
};
|
||||
}
|
||||
|
||||
interface I {
|
||||
void foo();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user