Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
compiler
/
testData
/
codegen
/
box
/
properties
/
complexPropertyInitializer.kt
blob: 02c5661994abe16991b36c12ba418c78e0d099bb [
file
]
// WITH_RUNTIME
// KJS_WITH_FULL_RUNTIME
class
A
{
val s
:
Sequence
<
String
>
=
sequence
{
val a
=
{}
yield
(
"OK"
)
}
}
fun box
():
String
=
A
().
s
.
single
()