Fix bug with member extensions with explicit receiver

Co-authored-by: Ilya Kirillov <ilya.kirillov@jetbrains.com>
This commit is contained in:
Roman Golyshev
2020-07-09 00:02:07 +03:00
committed by Ilya Kirillov
parent df03e31b86
commit a2cf01162e
6 changed files with 31 additions and 6 deletions
@@ -5,13 +5,10 @@ class A {
fun A.run(action: A.() -> Unit) {}
fun test(a: A) {
fun test() {
val a = A()
a.run {
<caret>
// remove this
Unit
}
}