mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
15 lines
273 B
Java
15 lines
273 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(Foo::<error descr="Cannot resolve method 'foo'">foo</error>);
|
|
}
|
|
} |