Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
260e8dfd39d86c4c5db834113ee010d647f3995e
/
.
/
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
}