// "class org.jetbrains.kotlin.idea.quickfix.replaceWith.DeprecatedSymbolUsageFix" "false" // ERROR: The integer literal does not conform to the expected type kotlin.String @Deprecated("", ReplaceWith("newFun()", imports = 123)) fun oldFun() { newFun() } fun newFun(){} fun foo() { oldFun() }