Files
kotlin/compiler/testData/codegen/box/strings/interpolation.kt
2015-04-07 16:05:42 +03:00

9 lines
244 B
Kotlin
Vendored

fun test(p: String?): String {
return "${p ?: "Default"} test"
}
fun box(): String {
if (test(null) != "Default test") return "fail 1: ${test(null)}"
if (test("Good") != "Good test") return "fail 1: ${test("OK")}"
return "OK"
}