Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
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
()