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