838cfc7dca
(cherry picked from commit dc8c195)
10 lines
211 B
Plaintext
Vendored
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
|
|
}
|
|
}
|
|
} |