KT-7929 related: KtDestructuringDeclarationEntry is not resolved to descriptor in OverridingDeprecatedMemberInspection

This commit is contained in:
Mikhail Glukhikh
2016-10-21 16:23:18 +03:00
parent 6b9252a5d3
commit 44d10672be
2 changed files with 8 additions and 4 deletions
@@ -44,4 +44,10 @@ interface Explicit : I {
@Deprecated("a")
override fun f(): Int {
}
}
data class Pair(x: Int, y: Int)
class Exc {
val (a, b) = Pair(1, 2)
}