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