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