Files
kotlin-fork/idea/testData/quickfix/makeConstructorParameterProperty/var.kt.after
T
2016-07-29 20:11:18 +03:00

7 lines
156 B
Plaintext
Vendored

// "Make constructor parameter a property" "true"
class A(<selection>private<caret></selection> var foo: String) {
fun bar() {
foo = ""
}
}