Remove leftovers of platformName and platformStatic in test data

Drop unnecessary imports, rename some tests
This commit is contained in:
Alexander Udalov
2016-03-02 16:47:04 +03:00
parent beb11e7ac1
commit 8e77e16bbd
55 changed files with 168 additions and 191 deletions
@@ -1,6 +1,5 @@
// FILE: Test.java
import java.lang.String;
import java.lang.annotation.Annotation;
class Test {
@@ -31,8 +30,6 @@ class Test {
// FILE: test.kt
import kotlin.jvm.JvmStatic
@Retention(AnnotationRetention.RUNTIME)
annotation class testAnnotation
@@ -20,8 +20,6 @@ class Test {
// FILE: enumCompanionObject.kt
import kotlin.jvm.JvmStatic
enum class A {
;
companion object {
@@ -22,8 +22,6 @@ class Test {
// FILE: simpleObject.kt
import kotlin.jvm.JvmStatic
object A {
val b: String = "OK"