Shorten References: Do not shorten qualified expression if receiver values are changed
#KT-5180 Fixed
This commit is contained in:
+1
-1
@@ -6,5 +6,5 @@ fun Z.foo(): Int {
|
||||
}
|
||||
|
||||
fun Z.i(): Int {
|
||||
return a
|
||||
return this.a
|
||||
}
|
||||
|
||||
+1
-1
@@ -6,5 +6,5 @@ fun Z.foo(): Int {
|
||||
}
|
||||
|
||||
fun Z.i(): Int {
|
||||
return a + a
|
||||
return this.a + a
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user