Files
kotlin-fork/js/js.translator/testData/classObject/cases/inTrait.kt
T
2015-09-22 15:00:24 +02:00

11 lines
126 B
Kotlin
Vendored

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