7ce62a5b64
A single test file will be generated out of box/ directory
10 lines
111 B
Kotlin
10 lines
111 B
Kotlin
object A {
|
|
object B {
|
|
object C {
|
|
val ok = "OK"
|
|
}
|
|
}
|
|
}
|
|
|
|
fun box() = A.B.C.ok
|