9 lines
166 B
Plaintext
Vendored
9 lines
166 B
Plaintext
Vendored
// "Replace with '"p = $p"'" "true"
|
|
|
|
@Deprecated("", ReplaceWith("\"p = \$p\""))
|
|
fun oldFun(p: Int) = "p = $p"
|
|
|
|
fun foo(p: Int) {
|
|
val s = <caret>"p = ${p + 1}"
|
|
}
|