blob: 937cc2f104b305a0e1280fe016b3d3619bdb337f [file]
// "Make 'i' 'const'" "true"
// ERROR: Only 'const val' can be used in constant expressions
package constVal
const val i = 1
annotation class Fancy(val param: Int)
@Fancy(<caret>i) class D