Analysis: add LC testdata with current behaviour

This commit is contained in:
Ilya Kirillov
2021-12-22 13:47:00 +03:00
parent 0b3a0fd799
commit db31e0292c
128 changed files with 2975 additions and 15 deletions
@@ -0,0 +1,12 @@
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)
}