blob: 24ee3201914947929752894d87537b16712dc107 [file] [log] [blame]
// "Annotate overridden method parameters as '@NotNull'" "true"
import org.jetbrains.annotations.NotNull;
abstract class P2 {
@NotNull
String foo(@NotNull<caret> P p) {
return "";
}
}
class PPP extends P2 {
String foo(@NotNull P p) {
return super.foo(p);
}
}
class PPP2 extends P2 {
String foo(@NotNull P p) {
return super.foo(p);
}
}