mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
14 lines
168 B
Kotlin
Vendored
14 lines
168 B
Kotlin
Vendored
// !LANGUAGE: -InlineConstVals
|
|
// IGNORE_BACKEND: JVM_IR
|
|
|
|
const val one = 1
|
|
const val two = 2
|
|
|
|
fun test1() {
|
|
if (!(one < two)) {
|
|
val p = 1
|
|
}
|
|
}
|
|
|
|
// 1 IF
|