Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
quickfix
/
modifiers
/
constVal.before.Main.kt
blob: 14e16dd2a30d759e85b290806a0ea91441620d58 [
file
] [
log
] [
blame
]
// "Add 'const' modifier" "true"
// ERROR: Only 'const val' can be used in constant expressions
package
constVal
val i
=
1
annotation
class
Fancy
(
val param
:
Int
)
@Fancy
(<
caret
>
i
)
class
D