bcfb5f3b09
#KT-4149 Fixed #KT-4839 Fixed
17 lines
352 B
Plaintext
17 lines
352 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
|
|
}
|
|
}
|
|
}
|