Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2f8b8915520217c656f00750d7faa239c6233ece
/
.
/
compiler
/
testData
/
codegen
/
boxWithStdlib
/
jvmName
/
multifileClassWithLocalClass.kt
blob: 134bf63d5513d8b270368469d257cd6f34a42356 [
file
]
@file
:
JvmName
(
"Test"
)
@file
:
JvmMultifileClass
package
test
fun foo
():
String
=
bar
()
fun bar
():
String
{
class
Local
(
val x
:
String
)
return
Local
(
"OK"
).
x
}
fun box
():
String
=
foo
()