mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
14 lines
246 B
Java
14 lines
246 B
Java
package test;
|
|
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
public interface InheritNullability {
|
|
|
|
public interface Super {
|
|
void foo(@NotNull String p);
|
|
}
|
|
|
|
public interface Sub extends Super {
|
|
void foo(String p);
|
|
}
|
|
} |