Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
properties
/
callInAssignmentToProperty.kt
blob: a511e1c3cb6e82b49eaa9ff21556779fdc140f85 [
file
] [
log
] [
blame
]
// "Replace with 'FOO'" "true"
const
val FOO
=
1
@Deprecated
(
"always const"
,
ReplaceWith
(
"FOO"
))
fun foo
()
=
1
fun test
(){
val x
=
foo
<caret>
()
}