mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-23 15:51:59 +00:00
17 lines
328 B
Plaintext
Vendored
17 lines
328 B
Plaintext
Vendored
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
|
|
}
|
|
}
|
|
}
|