Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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"
}