10 lines
178 B
Kotlin
Vendored
10 lines
178 B
Kotlin
Vendored
// "class org.jetbrains.kotlin.idea.quickfix.replaceWith.DeprecatedSymbolUsageFix" "false"
|
|
|
|
@Deprecated("", ReplaceWith("="))
|
|
fun oldFun() {
|
|
}
|
|
|
|
fun foo() {
|
|
<caret>oldFun()
|
|
}
|