mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
9 lines
108 B
Kotlin
Vendored
9 lines
108 B
Kotlin
Vendored
// FALSE
|
|
|
|
data class Test(val a : Int, val b : Int)
|
|
|
|
fun a() {
|
|
val (test, <caret>other) = Test(11, 12)
|
|
}
|
|
|