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

7 lines
142 B
Plaintext
Vendored

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