Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
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
}
}