blob: 2a07589736816fda6674068e88b0c3efb7448a19 [file] [log] [blame]
// "Annotate overridden methods as '@NotNull'" "true"
import org.jetbrains.annotations.*;
public class XEM {
<caret>@NotNull
String f(){
return "";
}
}
class XC extends XEM {
@NotNull
String f() {
return "";
}
}