Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
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"
}