Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
box
/
strings
/
interpolation.kt
blob: 772cb33771ade7a6472f24a17c81beb8417c3c57 [
file
]
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"
}