Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
compiler
/
testData
/
codegen
/
box
/
strings
/
singleConcatNullable.kt
blob: e714a8fc7a2c2572304d93442eb1484193ab3fb0 [
file
]
fun f
(
s
:
String
?):
String
{
return
"$s"
}
fun box
():
String
{
if
(
f
(
null
)
!=
"null"
)
return
"Fail"
return
"OK"
}