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
230 B
Plaintext
Vendored
14 lines
230 B
Plaintext
Vendored
// "Replace with 'newFun(p)'" "true"
|
|
// WITH_RUNTIME
|
|
|
|
@Deprecated("", ReplaceWith("newFun(p)"))
|
|
fun oldFun(vararg p: Double){
|
|
newFun(p)
|
|
}
|
|
|
|
fun newFun(p: DoubleArray){}
|
|
|
|
fun foo() {
|
|
<caret>newFun(doubleArrayOf(1.0, 2.0))
|
|
}
|