mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-20 05:21:29 +07:00
method refs: allow reference parameters before method name
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
class MyTest {
|
||||
interface I<X> {
|
||||
X _();
|
||||
}
|
||||
static <T> T bar() {return null;}
|
||||
static {
|
||||
I i = MyTest::<String>bar;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user