Add regression test for KT-26806

#KT-26806
This commit is contained in:
Mikhail Zarechenskiy
2018-09-14 16:30:05 +03:00
parent e242a8b08b
commit 8e66dadb47
4 changed files with 32 additions and 0 deletions
@@ -0,0 +1,9 @@
const val myPi = kotlin.math.PI
annotation class Anno(val d: Double)
@Anno(kotlin.math.PI)
fun f() {}
@Anno(myPi)
fun g() {}