Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/deprecationLevel.kt
T
2015-11-11 16:49:52 +03:00

9 lines
147 B
Kotlin
Vendored

// "Replace with 'b()'" "true"
@Deprecated("b!", ReplaceWith("b()"), DeprecationLevel.ERROR)
fun a() {}
fun b() {}
fun usage() {
<caret>a()
}