Files
kotlin-fork/idea/resources/intentionDescriptions/DeprecatedCallableAddReplaceWithIntention/after.kt.template
T
2015-05-27 16:15:50 +03:00

4 lines
121 B
Plaintext

@deprecated("Use newFun instead", <spot>ReplaceWith("newFun(null)")</spot>)
fun oldFun(): Int {
return newFun(null)
}