Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
260e8dfd39d86c4c5db834113ee010d647f3995e
/
.
/
compiler
/
testData
/
codegen
/
box
/
inline
/
kt26117.kt
blob: bc94438dd070d4383215e89dcb13cedf1318caae [
file
]
// KJS_WITH_FULL_RUNTIME
// TODO remove stdlib dependency
class
A
(
val list
:
List
<
String
>)
{
init
{
run
{
list
.
map
{
it
}
}
}
fun foo
()
=
list
.
map
{
it
}
}
fun box
()
=
A
(
listOf
(
"OK"
)).
foo
().
first
()