Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
modifiers
/
constVal.after.kt
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