FIR LC: fix invalid type param upper bound

This commit is contained in:
Ilya Kirillov
2022-02-25 10:27:28 +01:00
parent e010f59560
commit 4a5aee688e
3 changed files with 19 additions and 18 deletions
@@ -52,7 +52,7 @@ public abstract class C /* C*/<T> {
public C(@org.jetbrains.annotations.NotNull() java.util.List<? extends java.lang.CharSequence>);// .ctor(java.util.List<? extends java.lang.CharSequence>)
public final <V, U> T foo(V, @org.jetbrains.annotations.NotNull() C<V>, error.NonExistentClass);// <V, U> foo(V, C<V>, error.NonExistentClass)
public final <V, U extends V> T foo(V, @org.jetbrains.annotations.NotNull() C<V>, error.NonExistentClass);// <V, U extends V> foo(V, C<V>, error.NonExistentClass)
public final Q getW(Q);// getW(Q)
@@ -78,4 +78,4 @@ public class K /* K*/<T extends K<T>> {
public final class Sub /* Sub*/ extends K<K<?>> {
public Sub();// .ctor()
}
}