mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-26 00:21:32 +00:00
10 lines
264 B
Plaintext
10 lines
264 B
Plaintext
package test
|
|
|
|
public open class ConstructorInProtectedStaticNestedClass {
|
|
public constructor ConstructorInProtectedStaticNestedClass()
|
|
|
|
protected/*protected static*/ open class Inner {
|
|
protected/*protected and package*/ constructor Inner()
|
|
}
|
|
}
|