blob: 0e99ce1cb96d903ddde67b90dd2a3a8c0daacdc6 [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 {
@NotNull
String dontAnnotateBase<caret>() { // trigger quick fix for inspection here
return "Z";
}
}