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