Shorten References: Compare resolved calls when shortening receiver of qualified call expression

#KT-13660 Fixed
This commit is contained in:
Alexey Sedunov
2016-08-31 17:27:39 +03:00
parent c1296e2134
commit cf28dd04c8
5 changed files with 32 additions and 1 deletions
@@ -0,0 +1,7 @@
object X{ }
<selection>class Y {
fun f(op: X.()->Unit) {
X.op()
}
}</selection>
@@ -0,0 +1,7 @@
object X{ }
class Y {
fun f(op: X.()->Unit) {
X.op()
}
}