7 lines
76 B
Plaintext
Vendored
7 lines
76 B
Plaintext
Vendored
fun foo(i: Int) {
|
|
if (i <= 0) {
|
|
} else
|
|
bar()
|
|
}
|
|
|
|
fun bar() {} |