mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
This was already happening for classes and packages, now will also for interface DefaultImpls and any other possible classes
15 lines
374 B
Java
Vendored
15 lines
374 B
Java
Vendored
public interface Generic <N, NN> {
|
|
N a(N n);
|
|
|
|
@org.jetbrains.annotations.NotNull
|
|
NN b(@org.jetbrains.annotations.NotNull NN nn);
|
|
|
|
@org.jetbrains.annotations.Nullable
|
|
N a1(@org.jetbrains.annotations.Nullable N n);
|
|
|
|
@org.jetbrains.annotations.Nullable
|
|
NN b1(@org.jetbrains.annotations.Nullable NN nn);
|
|
|
|
static final class DefaultImpls {
|
|
}
|
|
} |