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