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