Files
kotlin-fork/idea/testData/quickfix/makeConstructorParameterProperty/inner.kt
T
2016-04-29 12:14:42 +02:00

10 lines
190 B
Kotlin
Vendored

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