Files
kotlin-fork/compiler/testData/codegen/box/properties/kt1398.kt
T
2016-11-09 21:41:12 +03:00

11 lines
264 B
Kotlin
Vendored

// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
open class Base(val bar: String)
class Foo(bar: String) : Base(bar) {
fun something() = (bar as java.lang.String).toUpperCase()
}
fun box() = Foo("ok").something()