Can be parameter inspection: delete only particular modifiers (e.g. no vararg) #KT-12768 Fixed
(cherry picked from commit d4116b5)
This commit is contained in:
committed by
Mikhail Glukhikh
parent
4abcc278fd
commit
5b328e9042
@@ -0,0 +1,5 @@
|
||||
// "Remove 'val' from parameter" "true"
|
||||
|
||||
class Wrapper(vararg <caret>val x: Int) {
|
||||
val y = x
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
// "Remove 'val' from parameter" "true"
|
||||
|
||||
class Wrapper(vararg x: Int) {
|
||||
val y = x
|
||||
}
|
||||
Reference in New Issue
Block a user