Files
kotlin-fork/idea/testData/intentions/deprecatedCallableAddReplaceWith/StringTemplate.kt.after
T
2015-09-04 18:19:31 +03:00

6 lines
125 B
Plaintext
Vendored

@Deprecated("", ReplaceWith("bar(\"\$p \${p + 1} $0\")"))
fun foo(p: Int) {
bar("$p ${p + 1} $0")
}
fun bar(s: String){}