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

11 lines
202 B
Kotlin
Vendored

// "Replace with 'newFun(*c)'" "true"
@Deprecated("", ReplaceWith("newFun(*c)"))
fun oldFun(vararg c: Char){}
fun newFun(vararg c: Char){}
fun foo() {
<caret>oldFun(java.io.File.separatorChar)
}