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,10 @@
class Derived(): protectedStaticProperty() {
fun test(): String {
return protectedStaticProperty.protectedProperty!!
}
}
fun box(): String {
return Derived().test()
}