11 lines
152 B
Plaintext
Vendored
11 lines
152 B
Plaintext
Vendored
fun test(): (Int) -> Int {
|
|
return when {
|
|
true -> {
|
|
{ 42 }
|
|
}
|
|
else -> {
|
|
{ _ -> 42 }
|
|
}
|
|
}
|
|
}
|