blob: 5fde49b864ab2d53335c13a3f2f8be33873e4dec [file] [log] [blame]
// "Replace with 'b()'" "true"
@Deprecated("b!", ReplaceWith("b()"), DeprecationLevel.ERROR)
fun a() {}
fun b() {}
fun usage() {
<caret>b()
}