Files
openide/java/java-tests/testData/inspection/nullableProblems/RemoveParameterAnnotationRemovesOverriders.java
2019-10-16 18:24:09 +00:00

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) {}
}