mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
12 lines
123 B
Kotlin
Vendored
12 lines
123 B
Kotlin
Vendored
fun test4() {
|
|
if (!false) {
|
|
val p = 1
|
|
}
|
|
}
|
|
|
|
fun test5() {
|
|
if (!true) {
|
|
val p = 1
|
|
}
|
|
}
|
|
// 0 IF |