7ce62a5b64
A single test file will be generated out of box/ directory
8 lines
100 B
Kotlin
8 lines
100 B
Kotlin
class Outer {
|
|
class Nested {
|
|
fun box() = "OK"
|
|
}
|
|
}
|
|
|
|
fun box() = Outer.Nested().box()
|