Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
properties
/
complexPropertyInitializer.kt
blob: d961a8d49d707694f5d3384a1466f600cc941ee7 [
file
]
// DONT_TARGET_EXACT_BACKEND: WASM
// WASM_MUTE_REASON: COROUTINES
// WITH_RUNTIME
// KJS_WITH_FULL_RUNTIME
class
A
{
val s
:
Sequence
<
String
>
=
sequence
{
val a
=
{}
yield
(
"OK"
)
}
}
fun box
():
String
=
A
().
s
.
single
()