Added Incomplete destructuring inspection

#KT-21223 Fixed
This commit is contained in:
kvirolainen
2020-06-29 12:03:27 +02:00
committed by Vladimir Dolzhenko
parent e6bca819d4
commit 5b1d019bb0
11 changed files with 143 additions and 0 deletions
@@ -0,0 +1,6 @@
data class Person(val name: String, val age: Int)
fun test() {
val person = Person("", 0)
val (name)<caret> = person
}