dd264cff50
In this commit we have a lot of change in test data. This was caused by the way where we evaluate constants. We split constant evaluation into two distinct parts: only necessary evaluations for `fir2ir` (like const val and annotations) and optimizations for lowering. Now we don't do all constant evaluation on `fir2ir`, but IR dump is executed after this phase, so test data changed. #KT-58923
19 lines
299 B
Kotlin
Vendored
19 lines
299 B
Kotlin
Vendored
val test1 = 1
|
|
val test2 = -1
|
|
val test3 = true
|
|
val test4 = false
|
|
val test5 = "abc"
|
|
val test6 = null
|
|
val test7 = 1L
|
|
val test8 = -1L
|
|
val test9 = 1.0
|
|
val test10 = -1.0
|
|
val test11 = 1.0f
|
|
val test12 = -1.0f
|
|
val test13 = 'a'
|
|
|
|
val testB: Byte = 1
|
|
val testS: Short = 1
|
|
val testI: Int = 1
|
|
val testL: Long = 1
|