Rename package in JPS plugin tests

Package 'kotlin' is not supported until package views are implemented, because
its name clashes with the stdlib
This commit is contained in:
Alexander Udalov
2013-07-18 15:47:39 +04:00
committed by Pavel V. Talanov
parent 5ea38437c2
commit 2af8dd4298
5 changed files with 10 additions and 10 deletions
@@ -1,4 +1,4 @@
package java;
public class JFirst extends kotlin.KFirst {
}
public class JFirst extends kt.KFirst {
}
@@ -1,6 +1,6 @@
package kotlin
package kt
open class KFirst() {
fun foo() {
}
}
}
@@ -1,7 +1,7 @@
package kotlin
package kt
class KSecond(): java.JFirst() {
fun bar() {
foo()
}
}
}