Add "Find Usages" tests for nested/inner classes and objects

This commit is contained in:
Alexey Sedunov
2013-11-01 19:32:35 +04:00
parent f99e6e6765
commit bc9b2bf657
16 changed files with 331 additions and 0 deletions
@@ -0,0 +1,8 @@
// PSI_ELEMENT: org.jetbrains.jet.lang.psi.JetObjectDeclarationName
package a
class A {
object <caret>O {
var foo: String = "foo"
}
}