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()
|
|
}
|
|
}
|