Files
kotlin-fork/compiler/testData/asJava/lightClasses/nullabilityAnnotations/Generic.fir.java
T
2021-12-27 16:23:20 +03:00

13 lines
365 B
Java
Vendored

public abstract interface Generic /* Generic*/<N, NN> {
@org.jetbrains.annotations.Nullable()
public abstract N a1(@org.jetbrains.annotations.Nullable() N);// a1(N)
@org.jetbrains.annotations.Nullable()
public abstract NN b1(@org.jetbrains.annotations.Nullable() NN);// b1(NN)
public abstract N a(N);// a(N)
public abstract NN b(NN);// b(NN)
}