mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-21 02:46:16 +07:00
10439a10a0
(cherry picked from commit 9c41270192e140ed28067e2740333c6d3fa49bd2)
15 lines
313 B
Java
15 lines
313 B
Java
class Test {
|
|
interface I {
|
|
void m(Integer x1, Integer x2, Integer x3);
|
|
}
|
|
|
|
static class Foo {
|
|
static void foo() {}
|
|
}
|
|
|
|
<T> void bar(I i) {}
|
|
|
|
void test() {
|
|
bar<error descr="'bar(Test.I)' in 'Test' cannot be applied to '(<method reference>)'">(Foo::foo)</error>;
|
|
}
|
|
} |