Add quickfix for CONST_VAL_NOT_TOP_LEVEL_OR_OBJECT to remove const modifier

#KT-35215 Fixed
This commit is contained in:
Toshiaki Kameyama
2019-12-04 13:08:00 +09:00
committed by Yan Zhulanow
parent 5a3c6def8f
commit 668473c337
5 changed files with 43 additions and 1 deletions
+4
View File
@@ -0,0 +1,4 @@
// "Remove 'const' modifier" "true"
class Foo {
<caret>const val s = "s"
}
+4
View File
@@ -0,0 +1,4 @@
// "Remove 'const' modifier" "true"
class Foo {
val s = "s"
}