7 lines
128 B
Plaintext
Vendored
7 lines
128 B
Plaintext
Vendored
fun test(x: Int, b: Boolean) {
|
|
val foo = if (x == 1)
|
|
if (b) 1 else {
|
|
2 // comment
|
|
}
|
|
else 0
|
|
} |