blob: c2f6e492ec8ad2c3c79283a4118440c717b653e7 [file] [log] [blame]
// "Annotate method as '@NotNull'" "true"
import org.jetbrains.annotations.NotNull;
class X {
@NotNull
String dontAnnotateBase() {
return "X";
}
}
class Y extends X{
String dontAnnotateBase() {
return "Y";
}
}
class Z extends Y {
String dontAnnotateBase<caret>() { // trigger quick fix for inspection here
return "Z";
}
}