Replace explicit parameter isn't shown on destructuring declaration

So #KT-17026 Fixed
This commit is contained in:
Toshiaki Kameyama
2017-06-08 13:04:51 +03:00
committed by Mikhail Glukhikh
parent e5717d3e96
commit c149e956cc
3 changed files with 12 additions and 1 deletions
@@ -0,0 +1,4 @@
// WITH_RUNTIME
// IS_APPLICABLE: false
val list = listOf(Pair(1, 2), Pair(3, 4)).map { (<caret>f, s) -> f + s }