Files
kotlin-fork/compiler/testData/loadJavaCustom/protectedStaticVisibility/constructor/ConstructorInProtectedStaticNestedClass.txt
T
2013-02-06 21:54:17 +04:00

10 lines
281 B
Plaintext

package test
public open class ConstructorInProtectedStaticNestedClass : java.lang.Object {
public constructor ConstructorInProtectedStaticNestedClass()
protected/*protected static*/ open class Inner : java.lang.Object {
protected constructor Inner()
}
}