Files
kotlin-fork/compiler/testData/codegen/box/properties/complexPropertyInitializer.kt
T
2020-04-20 17:05:30 +03:00

11 lines
175 B
Kotlin
Vendored

// WITH_RUNTIME
// KJS_WITH_FULL_RUNTIME
class A {
val s: Sequence<String> = sequence {
val a = {}
yield("OK")
}
}
fun box(): String = A().s.single()