37277d71de
#KT-34713 Fixed
13 lines
207 B
Kotlin
Vendored
13 lines
207 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun main() {
|
|
foo(true);
|
|
}
|
|
fun foo(someBool:Boolean) {
|
|
if (someBool) {
|
|
println("test1");
|
|
} else if (<caret>false) {
|
|
println("test2");
|
|
}
|
|
println("test3");
|
|
} |