6 lines
96 B
Kotlin
Vendored
6 lines
96 B
Kotlin
Vendored
const val ONE = 1
|
|
|
|
annotation class A(val x: Int)
|
|
|
|
@A(ONE) fun test1() {}
|
|
@A(1+1) fun test2() {} |