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