Add intention to add missing components to destructuring assignment #KT-16258 Fixed

This commit is contained in:
Kirill Rakhman
2017-02-17 17:09:41 +01:00
committed by Mikhail Glukhikh
parent 4d47c0fd63
commit 8d425a6f94
14 changed files with 157 additions and 0 deletions
@@ -0,0 +1,5 @@
data class Foo(val a: String, val b: String, val c: String)
fun bar(f: Foo) {
val (a, b) = f
}