Files
kotlin-fork/compiler/testData/codegen/innerNested/nestedSimple.kt
T
Alexander Udalov 85bd41dfa5 Codegen tests for inner/nested classes
#KT-1174 In Progress
2013-01-16 23:11:49 +04:00

8 lines
100 B
Kotlin

class Outer {
class Nested {
fun box() = "OK"
}
}
fun box() = Outer.Nested().box()