Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e74282753ae0fda39015b2d1cc9c31db24bb800c
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
stringTemplate.kt.after
blob: c99ea0ab06aee4ff58f4a479baa18ddf1b294c37 [
file
]
// "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}"
}