mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
10 lines
225 B
Java
10 lines
225 B
Java
class Test {
|
|
public static void main(String[] args) {
|
|
I i1 = <warning descr="Parameter 'p' is never used"><caret>p</warning> -> System.out.println();
|
|
System.out.println(i1);
|
|
}
|
|
}
|
|
|
|
interface I {
|
|
void foo(int i);
|
|
} |