mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 18:20:52 +07:00
11 lines
239 B
Java
11 lines
239 B
Java
// "Change 'implements B' to 'extends B'" "true-preview"
|
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
|
|
class A extends B<@NotNull String, @NotNull Integer> {
|
|
}
|
|
|
|
class B<@Nullable T, @NotNull K> {}
|