blob: dbb6de7de4460104a22751530bd708ca2752a9e9 [file] [log] [blame]
public class X {
void f(@Nullable String s) {}
}
class Y extends X {
void f(@Nullable String s) {}
}
class Z extends Y {
void f(@Nullable String s) {}
}