Minor, move diagnostic tests for class objects

This commit is contained in:
Alexander Udalov
2013-10-18 17:56:12 +04:00
parent bd244e0460
commit 94deb21551
5 changed files with 30 additions and 21 deletions
@@ -0,0 +1,22 @@
package foo
fun test() {
A.d
A.<!INVISIBLE_MEMBER!>f<!>
CCC.<!INVISIBLE_MEMBER!>classObjectVar<!>
}
class A() {
public class object {
val d = 3
private object f {
}
}
}
class CCC() {
private class object {
val classObjectVar = 3
}
}