Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
compiler
/
testData
/
codegen
/
box
/
extensionProperties
/
kt46952.kt
blob: 209ea660dc333e55ba6fb240e696f23bb39aa193 [
file
]
inline
class
C
(
val s
:
String
)
fun f
(
g
:
()
->
C
):
C
=
g
()
val C
.
foo
:
C
get
()
=
f
{
this
}
fun box
()
=
C
(
"OK"
).
foo
.
s