e2f75463d7
Don't reconfigure runtime before every test. For consistency, mark tests that require the runtime with directives instead of relying on test file names.
12 lines
218 B
Kotlin
Vendored
12 lines
218 B
Kotlin
Vendored
// "Replace with 'newFun(*c)'" "true"
|
|
// WITH_RUNTIME
|
|
|
|
@Deprecated("", ReplaceWith("newFun(*c)"))
|
|
fun oldFun(vararg c: Char){}
|
|
|
|
fun newFun(vararg c: Char){}
|
|
|
|
fun foo() {
|
|
<caret>oldFun(java.io.File.separatorChar)
|
|
}
|