Files
kotlin-fork/idea/testData/quickfix/makeConstructorParameterProperty/var.kt.after
T
2016-04-29 12:14:42 +02:00

7 lines
139 B
Plaintext
Vendored

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