Files
kotlin-fork/idea/testData/quickfix/makeConstructorParameterProperty/inner.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

10 lines
176 B
Kotlin
Vendored

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