Files
kotlin-fork/compiler/testData/diagnostics/tests/declarationChecks/RedeclarationsInMultiDecl.fir.kt
T

16 lines
342 B
Kotlin
Vendored

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