mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 11:40:50 +07:00
12 lines
273 B
Java
12 lines
273 B
Java
import foo.*;
|
|
|
|
class B {
|
|
{
|
|
new NullableFunction() {
|
|
public void fun(Object o) {}
|
|
};
|
|
new AnyFunction() {
|
|
public void fun(Object <warning descr="Not annotated parameter overrides @ParametersAreNonnullByDefault parameter">o</warning>) {}
|
|
};
|
|
}
|
|
} |