Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
box
/
closures
/
captureExtensionReceiverX2.kt
blob: eaf94fe8e6cab1fb235ab1c9ed1832b0806eabe0 [
file
]
// IGNORE_BACKEND_FIR: JVM_IR
fun
String
.
f
(
x
:
String
):
String
{
fun
String
.
g
()
=
{
this
@f
+
this
@g
}()
return
x
.
g
()
}
fun box
()
=
"O"
.
f
(
"K"
)