mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
9 lines
306 B
Java
9 lines
306 B
Java
import org.jetbrains.annotations.*;
|
|
|
|
interface Foo {
|
|
void getTime(<warning descr="Primitive type members cannot be annotated">@Nul<caret>lable</warning> int a);
|
|
}
|
|
|
|
class Bar implements Foo {
|
|
public void getTime(<warning descr="Primitive type members cannot be annotated">@Nullable</warning> int a) {}
|
|
} |