Files
kotlin-fork/js/js.translator/testData/box/objectDeclaration/objectInheritingFromClass.kt
T
2016-09-29 12:00:42 +03:00

10 lines
132 B
Kotlin
Vendored

package foo
abstract class A(val s: String) {
}
object B : A("test") {
}
fun box() = if (B.s == "test") "OK" else "fail: ${B.s}"