KT-8442 related: correct handling of erroneous destructuring references, fixes EA-90434

This commit is contained in:
Mikhail Glukhikh
2016-10-24 18:04:25 +03:00
parent e7e56ab85c
commit e53940f4af
4 changed files with 16 additions and 1 deletions
@@ -0,0 +1,5 @@
// "Optimize imports" "true"
<caret>import kotlin.collections.*
val (a, b, c) = Triple(1, 2, 3)
@@ -0,0 +1,3 @@
// "Optimize imports" "true"
val (a, b, c) = Triple(1, 2, 3)