Include collection type aliases into mock-runtime as they are used extremely often in tests
This commit is contained in:
+1
-1
@@ -6,7 +6,7 @@ package foobar.a
|
||||
|
||||
val a : <!PLATFORM_CLASS_MAPPED_TO_KOTLIN!>java.util.List<Int><!>? = null
|
||||
val a2 : <!UNRESOLVED_REFERENCE!>util<!>.<!DEBUG_INFO_MISSING_UNRESOLVED!>List<!><Int>? = null
|
||||
val a3 : <!UNRESOLVED_REFERENCE!>ArrayList<!><Int>? = null
|
||||
val a3 : <!UNRESOLVED_REFERENCE!>LinkedList<!><Int>? = null
|
||||
|
||||
// FILE: b.kt
|
||||
package foobar
|
||||
|
||||
@@ -60,7 +60,7 @@ package foobar {
|
||||
package foobar.a {
|
||||
public val a: java.util.List<kotlin.Int>? = null
|
||||
public val a2: [ERROR : util.List<Int>]<kotlin.Int>?
|
||||
public val a3: [ERROR : ArrayList<Int>]<kotlin.Int>?
|
||||
public val a3: [ERROR : LinkedList<Int>]<kotlin.Int>?
|
||||
public val b: kotlin.collections.List<kotlin.Int>? = null
|
||||
public val b1: [ERROR : util.List<Int>]<kotlin.Int>?
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user