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