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