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