Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/regression/kt26806.kt
T

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() {}