mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-23 15:51:59 +00:00
24 lines
466 B
Plaintext
24 lines
466 B
Plaintext
package test
|
|
|
|
public open class DeeplyNestedStatic : java.lang.Object {
|
|
public constructor DeeplyNestedStatic()
|
|
|
|
public open class Foo : java.lang.Object {
|
|
public constructor Foo()
|
|
|
|
public open class Bar : java.lang.Object {
|
|
public constructor Bar()
|
|
}
|
|
}
|
|
}
|
|
|
|
package DeeplyNestedStatic {
|
|
|
|
package Foo {
|
|
|
|
package Bar {
|
|
public open fun method() : jet.Unit
|
|
}
|
|
}
|
|
}
|