Files
2024-06-04 06:46:24 +00:00

16 lines
261 B
Java

// "Annotate overriding methods as '@NotNull'" "true"
import org.jetbrains.annotations.*;
public class XEM {
<caret>@NotNull
String f(){
return "";
}
}
class XC extends XEM {
@NotNull String f() {
return "";
}
}