mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 19:50:55 +07:00
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> {
|
|
}
|