Files
kotlin-fork/idea/testData/quickfix/makeConstructorParameterProperty/var.kt
T
Mikhail Glukhikh 0278a6c8a4 Make constructor parameter a property: message shortened a bit
(cherry picked from commit 1938909)
2016-07-29 20:11:09 +03:00

7 lines
121 B
Kotlin
Vendored

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