10 lines
152 B
Plaintext
Vendored
10 lines
152 B
Plaintext
Vendored
data class XY(val x: Int, val y: Int)
|
|
|
|
fun create() = XY(1, 2)
|
|
|
|
annotation class Ann
|
|
|
|
fun use(): Int {
|
|
@Ann val (x, y) = create()
|
|
return x + y
|
|
} |