add quickfix for NON_CONST_VAL_USED_IN_CONSTANT_EXPRESSION
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
// "Add 'const' modifier" "true"
|
||||
val i = 1
|
||||
|
||||
annotation class Fancy(val param: Int)
|
||||
|
||||
@Fancy(<caret>i) class D
|
||||
@@ -0,0 +1,6 @@
|
||||
// "Add 'const' modifier" "true"
|
||||
const val i = 1
|
||||
|
||||
annotation class Fancy(val param: Int)
|
||||
|
||||
@Fancy(<caret>i) class D
|
||||
Reference in New Issue
Block a user