Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/vararg/noImportRuntime.kt
T
2015-06-04 16:20:29 +03:00

13 lines
246 B
Kotlin
Vendored

// "Replace with 'newFun(*elements)'" "true"
@deprecated("", ReplaceWith("newFun(*elements)"))
fun oldFun(vararg elements: java.io.File?) {
newFun(*elements)
}
fun newFun(vararg elements: java.io.File?){}
fun foo() {
<caret>oldFun()
}