Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
mailformedExpression.kt
blob: cb77e814ac66c285a6c3e9710584a1e5bdafbcbe [
file
] [
log
] [
blame
]
// "class org.jetbrains.kotlin.idea.quickfix.replaceWith.DeprecatedSymbolUsageFix" "false"
@Deprecated
(
""
,
ReplaceWith
(
"order.safeAddItem(...)"
))
fun oldFun
()
{
}
fun foo
()
{
<caret>
oldFun
()
}