mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-02 22:51:01 +07:00
19 lines
355 B
Java
19 lines
355 B
Java
// "Change 'implements B' to 'extends B'" "true-preview"
|
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
class A extends B<@NotNull C<String>, @NotNull Integer> {
|
|
}
|
|
|
|
class B<@Nullable T, @NotNull K>{}
|
|
|
|
|
|
class C<@Nullable T> {
|
|
}
|
|
|