Prohibit val/vars/modifiers on secondary constructor parameter
#KT-6962 Fixed
This commit is contained in:
+4
@@ -0,0 +1,4 @@
|
||||
// "Remove 'val' from parameter" "true"
|
||||
class A {
|
||||
constructor(<caret>x: Int)
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
// "Remove 'val' from parameter" "true"
|
||||
class A {
|
||||
constructor(<caret>val x: Int)
|
||||
}
|
||||
Reference in New Issue
Block a user