10 lines
177 B
Plaintext
Vendored
10 lines
177 B
Plaintext
Vendored
fun test(x: Int, b: Boolean) {
|
|
val bar = when (x) {
|
|
1 ->
|
|
if (b) 1 else {
|
|
2 // comment
|
|
}
|
|
else ->
|
|
0
|
|
}
|
|
} |