Files
kotlin/compiler/testData/codegen/bytecodeText/lazyCodegen/negateConstantCompare.kt
Anton Sukhonosenko 0073257841 Fix for KT-10313: ClassCastException with Generics
#KT-10313 Fixed
2016-02-12 10:53:28 +03:00

9 lines
108 B
Kotlin
Vendored

const val one = 1
const val two = 2
fun test1() {
if (!(one < two)) {
val p = 1
}
}
// 1 IF