Files
kotlin/compiler/testData/loadJava/compiledJava/protectedStatic/ConstructorInProtectedStaticNestedClass.txt
2013-03-12 19:31:46 +04:00

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