Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2f8b8915520217c656f00750d7faa239c6233ece
/
.
/
compiler
/
testData
/
codegen
/
boxInline
/
complex
/
closureChain.1.kt
blob: 2c426e7155701181d1b9e598e88795f5a5e05634 [
file
]
fun test1
():
Int
{
val inlineX
=
Inline
()
return
inlineX
.
foo
({
z
:
Int
->
""
+
z
},
25
,
fun
String
.():
Int
=
this
.
length
())
}
fun box
():
String
{
if
(
test1
()
!=
2
)
return
"test1: ${test1()}"
return
"OK"
}