mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 00:21:26 +00:00
11 lines
134 B
Kotlin
Vendored
11 lines
134 B
Kotlin
Vendored
// LANGUAGE_VERSION: 1.0
|
|
|
|
const val one = 1
|
|
const val two = 2
|
|
|
|
fun test1() {
|
|
if (!(one < two)) {
|
|
val p = 1
|
|
}
|
|
}
|
|
// 1 IF |