de11d571ef
#KT-9928 Fixed
9 lines
147 B
Kotlin
Vendored
9 lines
147 B
Kotlin
Vendored
// "Replace with 'b()'" "true"
|
|
@Deprecated("b!", ReplaceWith("b()"), DeprecationLevel.ERROR)
|
|
fun a() {}
|
|
|
|
fun b() {}
|
|
|
|
fun usage() {
|
|
<caret>a()
|
|
} |