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.
14 lines
262 B
Kotlin
Vendored
14 lines
262 B
Kotlin
Vendored
// "Replace with 'newFun(*elements)'" "true"
|
|
// WITH_RUNTIME
|
|
|
|
@Deprecated("", ReplaceWith("newFun(*elements)"))
|
|
fun oldFun(vararg elements: java.io.File?) {
|
|
newFun(*elements)
|
|
}
|
|
|
|
fun newFun(vararg elements: java.io.File?){}
|
|
|
|
fun foo() {
|
|
<caret>oldFun()
|
|
}
|