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