Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
deprecationLevel.kt
blob: ce8c54c03d2cd0229f2b36a8d24c5318e213d5b8 [
file
] [
log
] [
blame
]
// "Replace with 'b()'" "true"
@Deprecated
(
"b!"
,
ReplaceWith
(
"b()"
),
DeprecationLevel
.
ERROR
)
fun a
()
{}
fun b
()
{}
fun usage
()
{
<caret>
a
()
}