Quickfix "Make primary constructor parameter a val" makes the val private now
Fixes #KT-13187
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
// "Make primary constructor parameter 'foo' a property" "true"
|
||||
|
||||
class A(var foo: String) {
|
||||
class A(private var foo: String) {
|
||||
fun bar() {
|
||||
foo<caret> = ""
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user