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

6 lines
128 B
Plaintext
Vendored

@Deprecated("", ReplaceWith("bar(\"\\\"\\\"\\n1\\r2\\t3\")"))
fun foo(p: Int) {
bar("\"\"\n1\r2\t3")
}
fun bar(s: String){}