Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
161333d3e7d13dd98386fe346a71a07eadfe4756
/
.
/
compiler
/
testData
/
codegen
/
box
/
innerClass
/
getOuterVal.kt
blob: ebf4e22e89d67b4757a8fda27269802ccd58f678 [
file
]
// WITH_STDLIB
import
kotlin
.
test
.*
class
Outer
(
val s
:
String
)
{
inner
class
Inner
{
fun box
()
=
s
}
}
fun box
()
=
Outer
(
"OK"
).
Inner
().
box
()