Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/replaceCallWithArgument.kt.after
T
2015-09-04 18:19:31 +03:00

8 lines
119 B
Plaintext
Vendored

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