tests fixed

This commit is contained in:
Svetlana Isakova
2012-09-24 15:24:21 +04:00
parent ab55369605
commit a27abfe355
3 changed files with 3 additions and 3 deletions
@@ -1,4 +1,4 @@
// "Specify type explicitly" "true"
package a
public val <caret>l: MutableList<Int> = java.util.Collections.emptyList<Int>()
public val <caret>l: List<Int> = java.util.Collections.emptyList<Int>()
@@ -9,7 +9,7 @@ import java.util.List
class M {
trait A {
val l<caret>: MutableList<Int>
val l<caret>: jet.List<Int>
}
}
}
@@ -5,6 +5,6 @@ import java.util.Collections
class M {
trait A {
abstract val l<caret>: MutableList<Int>
abstract val l<caret>: List<Int>
}
}