02180e8685
^KT-57777 Fixed ^KT-57818 Fixed
9 lines
115 B
Kotlin
Vendored
9 lines
115 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
|
|
const val ONE = 1
|
|
|
|
annotation class A(val x: Int)
|
|
|
|
@A(ONE) fun test1() {}
|
|
@A(1+1) fun test2() {}
|