Change Signature: Do not replace implicit receivers in calls with at least one explicit receiver

#KT-7988 Fixed
This commit is contained in:
Alexey Sedunov
2015-06-11 21:05:05 +03:00
parent d58112a32a
commit 5409b19abc
11 changed files with 106 additions and 4 deletions
@@ -0,0 +1,7 @@
class C {
fun String.<caret>foo() {
1.bar()
}
fun Int.bar() {}
}