Files
kotlin-fork/compiler/testData/ir/irText/expressions/literals.kt
T
Ivan Kylchik 7cf9dda8dc [JS] Support evaluation of const intrinsics for K2
#KT-56023 Fixed
#KT-51582 Fixed
2023-03-24 15:55:04 +00:00

21 lines
344 B
Kotlin
Vendored

// FIR_IDENTICAL
// IGNORE_BACKEND_K2: JS_IR
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