Files
kotlin/idea/testData/quickfix/createFromUsage/createVariable/parameter/assignedInFunInClass.kt.after
2015-10-20 18:39:47 +03:00

8 lines
135 B
Plaintext
Vendored

// "Create property 'foo' as constructor parameter" "true"
class A(var foo: Int) {
fun test(n: Int) {
foo = n + 1
}
}