KT-6891 Type argument of generic type before dot is not resolved

KT-7373 Type parameter names are not suggested
KT-6838 Class declared in same file is not suggested in completion

 #KT-6891 Fixed
 #KT-7373 Fixed
 #KT-6838 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-08-07 21:32:23 +03:00
parent f658cce1f1
commit 8b749ee76d
7 changed files with 61 additions and 0 deletions
@@ -0,0 +1,7 @@
class C {
val prop: List<F<caret>>
}
class Foo
// EXIST: Foo
@@ -0,0 +1,5 @@
class C<TParam> {
val v: List<T<caret>
}
// EXIST: TParam