Files
kotlin-fork/idea/testData/quickfix/makeConstructorParameterProperty/val.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
124 B
Kotlin
Vendored

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