mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-04 15:51:54 +00:00
24 lines
522 B
Plaintext
24 lines
522 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 test.DeeplyNestedStatic {
|
|
|
|
package test.DeeplyNestedStatic.Foo {
|
|
|
|
package test.DeeplyNestedStatic.Foo.Bar {
|
|
public open fun method(): jet.Unit
|
|
}
|
|
}
|
|
}
|