Track lookups for nested/inner Java classes

This commit is contained in:
Zalim Bashorov
2015-11-02 20:21:18 +03:00
parent 87f32ef07b
commit a6855116b8
6 changed files with 33 additions and 2 deletions
@@ -31,6 +31,8 @@ import bar.*
}
}
inner class C
companion object {
val a = 1
fun baz() {}
@@ -44,6 +46,8 @@ import bar.*
/*p:foo*/interface I {
var a: /*c:foo.I p:foo*/Int
fun foo()
class NI
}
/*p:foo*/object Obj : /*p:foo*/I {