Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/replaceCallWithArgument.kt
T
2015-06-29 19:29:26 +03:00

8 lines
126 B
Kotlin
Vendored

// "Replace with 'p'" "true"
deprecated("", ReplaceWith("p"))
fun oldFun(p: Int): Int = p
fun foo() {
<caret>oldFun(0)
}