KT-19154: Fix auto-import to check receiver for members properly

#KT-19154 fixed
This commit is contained in:
Simon Ogorodnik
2017-07-21 19:38:54 +03:00
parent f313001b2d
commit 094125c970
10 changed files with 141 additions and 26 deletions
@@ -0,0 +1,11 @@
// "Import" "true"
// ERROR: Unresolved reference: foobar
package p2
import p1.Some.foobar
class A {
fun some() {
foobar<caret>()
}
}