Support visibility for protected static members

#KT-2999 Fixed
This commit is contained in:
Natalia.Ukhorskaya
2013-01-24 18:41:26 +04:00
parent f9ae4f58b8
commit e37cb461f6
32 changed files with 401 additions and 12 deletions
@@ -0,0 +1,11 @@
class A {
class object: protectedStaticFunClassObject() {
fun test(): String {
return protectedStaticFunClassObject.protectedFun()!!
}
}
}
fun box(): String {
return A.test()
}