Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
makeConstructorParameterProperty
/
inner.kt
blob: e67d183cc2ffb9c131d836729d5776855297136e [
file
] [
log
] [
blame
]
// "Make constructor parameter a property in class 'B'" "true"
class
B
(
bar
:
String
)
{
inner
class
A
{
fun foo
()
{
val a
=
bar
<caret>
}
}
}