Remove invalid tests (valid tests are already exist)

This commit is contained in:
Nikolay Krasko
2011-12-27 15:51:13 +04:00
parent 7fcae64766
commit 25f7c139e0
4 changed files with 0 additions and 50 deletions
@@ -1,12 +0,0 @@
// "Import Class" "true"
package a
import a.b.M
fun test() {
val v = M
}
package b {
class M() { }
}
@@ -1,10 +0,0 @@
// "Import Class" "true"
package a
fun test() {
val v = <caret>M
}
package b {
class M() { }
}
@@ -1,15 +0,0 @@
// "Remove initializer from property" "true"
package a
import java.util.Collections
package b {
import java.util.List
class M {
trait A {
abstract val l : <caret>List<Int>?
}
}
}
@@ -1,13 +0,0 @@
// "Remove initializer from property" "true"
package a
import java.util.Collections
package b {
class M {
trait A {
abstract val l = <caret>Collections.emptyList<Int>()
}
}
}