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