Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
codegen
/
box
/
casts
/
unitAsSafeAny.kt
blob: 81d5a49542556aaf4cd8a59c4d6a938eb69f9e8e [
file
] [
log
] [
blame
]
fun println
(
s
:
String
)
{
}
fun box
():
String
{
val x
=
println
(
":Hi!"
)
as
?
Any
if
(
x
!=
Unit
)
return
"Fail: $x"
return
"OK"
}