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