Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
assignToProperty
/
inSecondaryConstructor.kt
blob: 0c0af3761b0cf77b9366c24b9dc011bcbe7720c4 [
file
] [
log
] [
blame
]
// "Assign to property" "true"
class
Test
{
val foo
:
Int
constructor
(
foo
:
Int
)
{
<caret>
foo
=
foo
}
}