Fixed extension properties not completed after "get"

This commit is contained in:
Valentin Kipyatkov
2016-05-14 01:22:41 +03:00
parent 88bf7f883e
commit 2ec81f44bf
5 changed files with 36 additions and 21 deletions
@@ -0,0 +1,4 @@
package dependency
val String.notImportedExtension: Int
get() = 0
@@ -0,0 +1,9 @@
val String.thisFileExtension: Int
get() = 0
fun f() {
"".get<caret>
}
// EXIST: thisFileExtension
// EXIST: notImportedExtension