tests fixed
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
// "Specify type explicitly" "true"
|
// "Specify type explicitly" "true"
|
||||||
package a
|
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 {
|
class M {
|
||||||
trait A {
|
trait A {
|
||||||
val l<caret>: MutableList<Int>
|
val l<caret>: jet.List<Int>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -5,6 +5,6 @@ import java.util.Collections
|
|||||||
|
|
||||||
class M {
|
class M {
|
||||||
trait A {
|
trait A {
|
||||||
abstract val l<caret>: MutableList<Int>
|
abstract val l<caret>: List<Int>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user