mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
method refs: take qualifier's type arguments in account: raw types
This commit is contained in:
+14
@@ -14,3 +14,17 @@ class MyTest {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class MyTest1 {
|
||||
interface I {
|
||||
String m(Foo f);
|
||||
}
|
||||
|
||||
static class Foo<X> {
|
||||
String foo() { return null; }
|
||||
|
||||
static void test() {
|
||||
I i = Foo::foo;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user