Fixed KT-5795 Do not suggest member extension functions with wrong implicit reciever

#KT-5795 Fixed
This commit is contained in:
Valentin Kipyatkov
2014-09-17 13:28:11 +04:00
committed by valentin
parent 6ed57f5e7a
commit 34aada75eb
4 changed files with 31 additions and 9 deletions
@@ -0,0 +1,11 @@
class X {
fun String.f() {}
}
fun foo() {
with (X()) {
<caret>
}
}
// ABSENT: f