1b65ba644e
#KT-2359 In Progress
12 lines
121 B
Kotlin
12 lines
121 B
Kotlin
package foo
|
|
|
|
|
|
fun box() : Boolean {
|
|
|
|
return (when(1) {
|
|
2 -> 3
|
|
1 -> 1
|
|
else -> 5
|
|
} == 1)
|
|
|
|
} |