mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
testdata: check that method ref on static interface method is accepted
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
interface I {
|
||||
static void a() {}
|
||||
}
|
||||
|
||||
interface J {
|
||||
void foo();
|
||||
}
|
||||
|
||||
class Test {
|
||||
{
|
||||
J j = I::a;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user