Constructor for protected_static nested class should be protected

This commit is contained in:
Natalia.Ukhorskaya
2013-01-24 20:43:12 +04:00
parent 20c1181ad1
commit b0aa094cf8
5 changed files with 33 additions and 3 deletions
@@ -0,0 +1,7 @@
package test;
public class ConstructorInProtectedStaticNestedClass {
protected static class Inner {
}
}
@@ -0,0 +1,9 @@
package test
public open class ConstructorInProtectedStaticNestedClass : java.lang.Object {
public constructor ConstructorInProtectedStaticNestedClass()
protected_static open class Inner : java.lang.Object {
protected constructor Inner()
}
}