diagnostic tests changes after collections mapping

This commit is contained in:
Svetlana Isakova
2012-09-04 16:51:28 +04:00
parent bab20717ee
commit 7c828b9ff7
52 changed files with 39 additions and 104 deletions
@@ -4,8 +4,8 @@
package foobar.a
import java.*
val a : util.List<Int>? = null
val a1 : <!UNRESOLVED_REFERENCE!>List<!><Int>? = null
val a : <!CLASS_HAS_KOTLIN_ANALOG!>util.List<Int><!>? = null
val a1 : List<Int>? = null
// FILE: b.kt
package foobar
@@ -18,7 +18,7 @@ abstract class Foo<T>() {
package foobar.a
import java.util.*
val b : List<Int>? = a
val b : List<Int>? = <!TYPE_MISMATCH!>a<!>
val b1 : <!UNRESOLVED_REFERENCE!>util<!>.List<Int>? = a
// FILE: b.kt
@@ -64,4 +64,4 @@ abstract class Collection<E> : Iterable<E> {
}
return iteratee.done()
}
}
}