Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fa6706d92e6b4fd10bdb26da483b20467cd68a42
/
.
/
compiler
/
testData
/
codegen
/
box
/
basics
/
unit2.kt
blob: 4a38115ff27fb3fd043b50054e0e9d047624ccfc [
file
]
fun box
():
String
{
val x
=
foo
()
if
(
x
.
toString
()
!=
"kotlin.Unit"
)
return
"FAIL: $x"
return
"OK"
}
fun foo
()
{
return
Unit
}