mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
12 lines
201 B
Java
12 lines
201 B
Java
interface I {
|
|
static <Z> void foo() { }
|
|
}
|
|
|
|
class A implements I {
|
|
{
|
|
System.out.println(A./*c1*/foo());
|
|
Runnable r = A/*c2*/::<String>foo;
|
|
System.out.println(r);
|
|
}
|
|
}
|