Files
kotlin-fork/compiler/testData/cfg/declarations/multiDeclaration/MultiDecl.kt
T
2014-03-07 21:08:14 +04:00

12 lines
126 B
Kotlin

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