Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
makeConstructorParameterProperty
/
inner.kt.after
blob: 8480bbf4ae2f290fb34a745db196ab86054147c2 [
file
] [
log
] [
blame
]
// "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
}
}
}