Files
kotlin-fork/idea/testData/quickfix/assignToProperty/inSecondaryConstructor.kt.after
T
2017-10-05 14:25:28 +03:00

8 lines
120 B
Plaintext
Vendored

// "Assign to property" "true"
class Test {
val foo: Int
constructor(foo: Int) {
this.foo = foo
}
}