SLC: account for upperbounds when computing nullability of type parameter

This commit is contained in:
Jinseong Jeon
2022-08-28 16:00:24 -07:00
committed by Ilya Kirillov
parent e83819e682
commit 4859524115
2 changed files with 3 additions and 19 deletions
@@ -1,12 +0,0 @@
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)
}