Files
kotlin-fork/compiler/testData/codegen/rawStrings.kt
T
2013-01-24 21:12:27 +04:00

6 lines
114 B
Kotlin

fun box() : String {
val s = """ foo \n bar """
if (s != " foo \\n bar ") return "Fail: '$s'"
return "OK"
}