[AA LC] Properly set type mapping mode for bounds of type parameters

This commit is contained in:
Dmitriy Novozhilov
2022-08-10 15:13:17 +03:00
parent a3884e35e2
commit c67ded2d3b
8 changed files with 15 additions and 13 deletions
@@ -1,4 +1,4 @@
public final class MyList /* MyList*/ implements kotlin.collections.List<java.lang.String> {
public final class MyList /* MyList*/ implements java.util.List<java.lang.String> {
@java.lang.Override()
@org.jetbrains.annotations.NotNull()
public java.lang.String get(int);// get(int)
@@ -7,7 +7,7 @@ public final class MyList /* MyList*/ implements kotlin.collections.List<java.la
}
public abstract interface ASet /* ASet*/<T> extends kotlin.collections.MutableCollection<T> {
public abstract interface ASet /* ASet*/<T> extends java.util.Collection<T> {
}
public abstract class MySet /* MySet*/<T> implements ASet<T> {