Files
kotlin-fork/idea/testData/quickfix/makeConstructorParameterProperty/inner.kt.after
T
2016-07-29 20:11:18 +03:00

10 lines
211 B
Plaintext
Vendored

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