7ce62a5b64
A single test file will be generated out of box/ directory
10 lines
157 B
Kotlin
10 lines
157 B
Kotlin
class A {
|
|
fun component1() = 1
|
|
fun component2() = 2
|
|
}
|
|
|
|
fun box() : String {
|
|
val (a, b) = A()
|
|
return if (a == 1 && b == 2) "OK" else "fail"
|
|
}
|