blob: 78cf743b7953e6c5f6534d754c19ee05f5c23023 [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 {
@Nullable
String f() {
return "";
}
}