8860bab9f1
#KT-2643 fixed
12 lines
126 B
Plaintext
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
|
|
}
|