Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
box
/
casts
/
unitAsAny.kt
blob: 74326356cba7ff557af5fc7bcbd0cc260307f2a6 [
file
]
fun println
(
s
:
String
)
{
}
fun box
():
String
{
val x
=
println
(
":Hi!"
)
as
Any
if
(
x
!=
Unit
)
return
"Fail: $x"
return
"OK"
}