85bd41dfa5
#KT-1174 In Progress
8 lines
100 B
Kotlin
8 lines
100 B
Kotlin
class Outer {
|
|
class Nested {
|
|
fun box() = "OK"
|
|
}
|
|
}
|
|
|
|
fun box() = Outer.Nested().box()
|