Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
boxInline
/
capture
/
kt48230.kt
blob: 0862b1595b3a1432cbe1d89409fc290cbbd98421 [
file
]
// NO_CHECK_LAMBDA_INLINING
// FILE: 1.kt
inline
fun withO
(
block
:
String
.()
->
String
)
=
"O"
.
block
()
// FILE: 2.kt
interface
I
{
val k
:
String
fun foo
()
=
withO
{
this
+
k
}
}
fun box
():
String
=
object
:
I
{
override
val k
=
"K"
}.
foo
()