blob: e7216a1256b35ece72018514ac6e9e7a727024a1 [file] [log] [blame]
class A {
operator fun component1() : Int = 1
operator fun component2() : Int = 2
}
fun a() {
val (<!REDECLARATION!>a<!>, <!REDECLARATION!>a<!>) = A()
val (x, <!REDECLARATION!>y<!>) = A();
val <!REDECLARATION!>b<!> = 1
use(b)
val (<!REDECLARATION!>b<!>, <!REDECLARATION!>y<!>) = A();
}
fun use(a: Any): Any = a