Files
kotlin-fork/compiler/testData/codegen/box/properties/kt1398.kt
T
2018-12-21 16:09:12 +01:00

10 lines
163 B
Kotlin
Vendored

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