mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-25 06:18:32 +07:00
GitOrigin-RevId: 51cb044bc1a3bad93f2ea34504a3c8e3f5ee9916
12 lines
301 B
Java
12 lines
301 B
Java
import org.jetbrains.annotations.NotNull;
|
|
|
|
// "Change 'implements B' to 'extends B'" "true-preview"
|
|
class A extends B<@NotNull C<String>, @NotNull Integer> {
|
|
}
|
|
|
|
class B<@org.jetbrains.annotations.Nullable T, @org.jetbrains.annotations.NotNull K>{}
|
|
|
|
|
|
class C<@org.jetbrains.annotations.Nullable T> {
|
|
}
|