Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/regression/kt26806.kt
T
Mikhail Zarechenskiy 8e66dadb47 Add regression test for KT-26806
#KT-26806
2018-09-17 16:21:01 +03:00

9 lines
127 B
Kotlin
Vendored

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