Files
kotlin-fork/compiler/testData/codegen/box/properties/kt1398.kt
T

11 lines
188 B
Kotlin
Vendored

// KJS_WITH_FULL_RUNTIME
// WITH_RUNTIME
open class Base(val bar: String)
class Foo(bar: String) : Base(bar) {
fun something() = bar.toUpperCase()
}
fun box() = Foo("ok").something()