KT-9450 «Replace overloaded operator with function call» breaks code for index access result saved to variable
#KT-9450 Fixed
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
fun foo(map: Map<String, String>) {
|
||||
val a: String?
|
||||
a = map<caret>[""]
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
fun foo(map: Map<String, String>) {
|
||||
val a: String?
|
||||
a = map.get("")
|
||||
}
|
||||
Reference in New Issue
Block a user