Added Incomplete destructuring inspection
#KT-21223 Fixed
This commit is contained in:
committed by
Vladimir Dolzhenko
parent
e6bca819d4
commit
5b1d019bb0
@@ -0,0 +1,6 @@
|
||||
data class Person(val name: String, val age: Int)
|
||||
|
||||
fun test() {
|
||||
val person = Person("", 0)
|
||||
val (name)<caret> = person
|
||||
}
|
||||
Reference in New Issue
Block a user