15 lines
268 B
Kotlin
Vendored
15 lines
268 B
Kotlin
Vendored
// "Replace with 'newFun()'" "true"
|
|
|
|
@Suppress("DEPRECATED_SINCE_KOTLIN_OUTSIDE_KOTLIN_SUBPACKAGE")
|
|
@Deprecated("", ReplaceWith("newFun()"))
|
|
@DeprecatedSinceKotlin(warningSince = "1.0")
|
|
fun oldFun() {
|
|
newFun()
|
|
}
|
|
|
|
fun newFun() {}
|
|
|
|
fun foo() {
|
|
<caret>oldFun()
|
|
}
|