Files
kotlin-fork/compiler/testData/cfg/declarations/multiDeclaration/MultiDecl.kt
T
2020-02-13 11:15:58 +03:00

12 lines
144 B
Kotlin
Vendored

package n
class C {
operator fun component1() = 1
operator fun component2() = 2
}
fun test(c: C) {
val (a, b) = c
val d = 1
}