mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-30 18:20:52 +07:00
19 lines
364 B
Java
19 lines
364 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 implements <caret>B<@NotNull C<String>, @NotNull Integer>{
|
|
}
|
|
|
|
class B<@Nullable T, @NotNull K>{}
|
|
|
|
|
|
class C<@Nullable T> {
|
|
}
|
|
|