Files

10 lines
144 B
Kotlin
Vendored

// FIR_IDENTICAL
const val myPi = kotlin.math.PI
annotation class Anno(val d: Double)
@Anno(kotlin.math.PI)
fun f() {}
@Anno(myPi)
fun g() {}