7ce62a5b64
A single test file will be generated out of box/ directory
13 lines
192 B
Kotlin
13 lines
192 B
Kotlin
class Outer {
|
|
class Nested {
|
|
class object {
|
|
val O = "O"
|
|
val K = "K"
|
|
}
|
|
}
|
|
|
|
fun O() = Nested.O
|
|
}
|
|
|
|
fun box() = Outer().O() + Outer.Nested.K
|