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