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

7 lines
159 B
Plaintext
Vendored

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