Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
assignToProperty
/
differentNameProperty.kt
blob: 60c793c0eae0800e77fc9440d28f227e8a9cb409 [
file
] [
log
] [
blame
]
// "Assign to property" "false"
// ERROR: Val cannot be reassigned
class
Test
{
var
bar
=
1
fun test
(
foo
:
Int
)
{
<caret>
foo
=
foo
}
}