Delete three diagnostic tests which rendered parts of JRE

- PackageLocalClassNotImportedWithDefaultImport.kt goes to codegen multi-file
  tests. File in java.lang moved to kotlin.jvm, which seems irrelevant to the
  test, because java.lang is prohibited by the VM
- MergePackagesWithJava.kt (KT-689, Java and Kotlin in the same package) and
  kt955.kt (Unable to import from default package) are considered too obsolete
  to even test and are thus deleted

Also check that there's no more than 1000 lines in the .txt file in diagnostic
tests.
This commit is contained in:
Alexander Udalov
2015-04-10 19:16:27 +03:00
parent 94df191f86
commit 92fa107471
12 changed files with 29 additions and 48238 deletions

View File

@@ -0,0 +1,10 @@
package a
import pack.*
class X : SomeClass()
fun box(): String {
X()
return "OK"
}

View File

@@ -0,0 +1,3 @@
package kotlin.jvm
private class SomeClass

View File

@@ -0,0 +1,3 @@
package pack
public open class SomeClass