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