Files
kotlin-fork/compiler/testData/codegen/box/properties/complexPropertyInitializer.kt
T
2021-10-12 08:42:00 +03:00

10 lines
150 B
Kotlin
Vendored

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