Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
21de67cac1bef9259daa407b68a12e178923aef3
/
.
/
compiler
/
testData
/
codegen
/
box
/
localClasses
/
localClassCaptureExtensionReceiver.kt
blob: 89ee7e3754fb2cb2ace870d28838a828c507a074 [
file
]
class
Outer
{
fun
String
.
id
():
String
{
class
Local
(
unused
:
Long
)
{
fun result
()
=
this
@id
fun outer
()
=
this
@Outer
}
return
Local
(
42L
).
result
()
}
fun result
():
String
=
"OK"
.
id
()
}
fun box
()
=
Outer
().
result
()