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