37277d71de
#KT-34713 Fixed
11 lines
150 B
Plaintext
Vendored
11 lines
150 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
|
|
fun main() {
|
|
foo(true);
|
|
}
|
|
fun foo(someBool:Boolean) {
|
|
if (someBool) {
|
|
println("test1");
|
|
}
|
|
println("test3");
|
|
} |