mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-23 15:51:59 +00:00
10 lines
306 B
Plaintext
10 lines
306 B
Plaintext
package test
|
|
|
|
public open class ConstructorInProtectedStaticNestedClass : java.lang.Object {
|
|
public constructor ConstructorInProtectedStaticNestedClass()
|
|
|
|
protected/*protected static*/ open class Inner : java.lang.Object {
|
|
protected/*protected and package*/ constructor Inner()
|
|
}
|
|
}
|