Files
kotlin-fork/js/js.translator/testData/box/classObject/inTrait.kt
T

11 lines
126 B
Kotlin
Vendored

package foo
interface A {
companion object {
val OK: String = "OK"
}
}
fun box(): String {
return A.OK
}