Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/incorrectArgs.kt
T
2020-09-11 13:51:15 +03:00

15 lines
389 B
Kotlin
Vendored

// "class org.jetbrains.kotlin.idea.quickfix.replaceWith.DeprecatedSymbolUsageFix" "false"
// ERROR: The integer literal does not conform to the expected type Array<out String>
// ERROR: Assigning single elements to varargs in named form is forbidden
@Deprecated("", ReplaceWith("newFun()", imports = 123))
fun oldFun() {
newFun()
}
fun newFun(){}
fun foo() {
<caret>oldFun()
}