7 lines
118 B
Kotlin
7 lines
118 B
Kotlin
// WITH_RUNTIME
|
|
fun foo() {
|
|
val x = true
|
|
if <caret>(x && false) {
|
|
throw AssertionError("text")
|
|
}
|
|
} |