Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/incorrectReplacement.kt
T
Valentin Kipyatkov 8dbe87a918 Moved classes
2015-09-03 15:55:58 +03:00

10 lines
178 B
Kotlin
Vendored

// "class org.jetbrains.kotlin.idea.quickfix.replaceWith.DeprecatedSymbolUsageFix" "false"
@deprecated("", ReplaceWith("="))
fun oldFun() {
}
fun foo() {
<caret>oldFun()
}