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