Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fae15b3fc4205675bfb51513d6068f83490926d3
/
.
/
compiler
/
testData
/
codegen
/
box
/
properties
/
complexPropertyInitializer.kt
blob: 3f3e99bf8ccdbb30a04786b4d7f6e6405af3f305 [
file
] [
log
] [
blame
]
// WITH_STDLIB
class
A
{
val s
:
Sequence
<
String
>
=
sequence
{
val a
=
{}
yield
(
"OK"
)
}
}
fun box
():
String
=
A
().
s
.
single
()