mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-25 15:51:36 +00:00
17 lines
328 B
Plaintext
17 lines
328 B
Plaintext
package test
|
|
|
|
public open class DeeplyNestedStatic {
|
|
public constructor DeeplyNestedStatic()
|
|
|
|
public open class Foo {
|
|
public constructor Foo()
|
|
|
|
public open class Bar {
|
|
public constructor Bar()
|
|
|
|
// Static members
|
|
public open fun method(): kotlin.Unit
|
|
}
|
|
}
|
|
}
|