Files
kotlin-fork/js/js.translator/testFiles/namespace/cases/classCreatedInDeeplyNestedNamespace.kt
T

7 lines
103 B
Kotlin

package foo1.foo2.foo3.foo5.foo6.foo7.foo8
fun box() = A().doBox()
class A() {
fun doBox() = true
}