mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-04 08:31:30 +00:00
24 lines
465 B
Plaintext
24 lines
465 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
|
|
}
|
|
}
|
|
}
|