fba0bd79ad
Compilation crash must be handled separately in `convertToConstantValues` method because we still want successfully compile common code. All constants will be evaluated later on fir2ir phase. #KT-59362 Fixed
10 lines
194 B
Kotlin
Vendored
10 lines
194 B
Kotlin
Vendored
// ISSUE: KT-58139
|
|
|
|
annotation class AnnKlass(val arg: String)
|
|
|
|
@AnnKlass("lhs" + "rhs")
|
|
fun foo() {}
|
|
|
|
const val BATCH_SIZE: Int = 16 * 1024
|
|
const val REPLACEMENT_BYTE: Byte = '?'.code.toByte()
|