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