7 lines
105 B
Plaintext
Vendored
7 lines
105 B
Plaintext
Vendored
fun test(): (Int) -> Int {
|
|
return if (true) {
|
|
{ 42 }
|
|
} else {
|
|
{ _ -> 42 }
|
|
}
|
|
} |