Include collection type aliases into mock-runtime as they are used extremely often in tests

This commit is contained in:
Ilya Gorbunov
2016-11-16 23:37:57 +03:00
parent 6a70761783
commit 491ca582b3
3 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -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>?
}