Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
assignToProperty
/
valProperty2.kt
blob: 01a6f9e8673451fd2437025786cd2305508543d8 [
file
] [
log
] [
blame
]
// "Assign to property" "false"
// ACTION: Convert assignment to assignment expression
// ERROR: Val cannot be reassigned
class
Test
(
val foo
:
Int
)
{
fun test
(
foo
:
Int
)
{
<caret>
foo
=
foo
}
}