mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
10 lines
171 B
Kotlin
Vendored
10 lines
171 B
Kotlin
Vendored
class A {
|
|
}
|
|
|
|
operator fun A.component1() = 1
|
|
operator fun A.component2() = 2
|
|
|
|
fun box() : String {
|
|
val (a, b) = A()
|
|
return if (a == 1 && b == 2) "OK" else "fail"
|
|
} |