Files
Tagir Valeev 37c03b015c [java-intentions] IDEA-363734 "Make Xxx impelent Yyy" quick fix inserts @NotNull
GitOrigin-RevId: 4e9a3f94cf1aedadd0b2c4699e168ccb3be0e405
2024-12-03 14:25:33 +00:00

14 lines
218 B
Java

// "Make 'a' implement 'b'" "true-preview"
class a implements b<String> {
void f(b<String> r) {
r.g(this);
}
@Override
public void g(b<String> t) {
}
}
interface b<T> {
void g(b<T> t);
}