fix tests in org.jetbrains.kotlin.js.test.semantics for secondary constructors: TODO: fix problem and remove this commit

This commit is contained in:
Michael Nedzelsky
2015-09-07 22:22:49 +03:00
parent f6892580f6
commit e6e6b20885
6 changed files with 12 additions and 12 deletions
@@ -1,14 +1,14 @@
interface A {
internal interface A {
fun foo(): String
}
class B : A {
internal class B : A {
override fun foo() = "OK"
}
val global = B()
class C(x: Int) : A by global {
internal class C(x: Int) : A by global {
constructor(): this(1)
}