Update for the previous fix for class object's visibility.

This commit is contained in:
Pavel V. Talanov
2012-07-02 15:02:18 +04:00
parent 3504106981
commit 187c90ed3b
3 changed files with 18 additions and 3 deletions
@@ -3,7 +3,7 @@ package foo
fun test() {
A.d
A.<!INVISIBLE_MEMBER!>f<!>
B.<!INVISIBLE_MEMBER!>c<!>
CCC.<!INVISIBLE_MEMBER!>classObjectVar<!>
}
class A() {
@@ -15,8 +15,8 @@ class A() {
}
}
class B() {
class CCC() {
private class object {
val c = 3
val classObjectVar = 3
}
}