Fixed resolving class name before dot and nothing else

This commit is contained in:
Valentin Kipyatkov
2015-08-07 22:44:12 +03:00
parent 8b749ee76d
commit 98c970d394
5 changed files with 44 additions and 12 deletions
@@ -0,0 +1,7 @@
class Foo
class C {
val prop: <caret>Foo.
}
// REF: (<root>).Foo
@@ -0,0 +1,9 @@
class Generic<T>
class C {
val prop: Generic<<caret>Foo>.
}
class Foo
// REF: (<root>).Foo