Files
kotlin-fork/compiler/testData/codegen/box/properties/kt1398.kt
T
2021-12-07 21:33:28 +03:00

10 lines
162 B
Kotlin
Vendored

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