Destructure intention now handles the case with manual destructuring inside #KT-13943 Fixed
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
// WITH_RUNTIME
|
||||
|
||||
fun foo(map: Map<Int, Int>) {
|
||||
for (entry<caret> in map.entries) {
|
||||
val (key, value) = entry
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user