[AA LC] Properly set type mapping mode for bounds of type parameters
This commit is contained in:
+2
-2
@@ -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> {
|
||||
|
||||
Reference in New Issue
Block a user