Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
assignToProperty
/
sameProperty.kt.after
blob: 98b8e80d9048580dc106eb8656a553646348e275 [
file
] [
log
] [
blame
]
// "Assign to property" "true"
class
Test
{
var
foo
=
1
fun test
(
foo
:
Int
)
{
this
.
foo
=
foo
}
}