Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
doNotShortenUserReferences.kt
blob: f6f46418b685969dec563f89fdbf9aba677a310f [
file
] [
log
] [
blame
]
// "Replace with 'newFun(c)'" "true"
@Deprecated
(
""
,
ReplaceWith
(
"newFun(c)"
))
fun oldFun
(
c
:
Char
){}
fun newFun
(
c
:
Char
){}
fun foo
()
{
<caret>
oldFun
(
java
.
io
.
File
.
separatorChar
)
}