Files
kotlin-fork/compiler/testData/cfg/MultiDecl.jet
T
2012-08-20 18:48:09 +04:00

12 lines
126 B
Plaintext

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