Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
compiler
/
testData
/
codegen
/
box
/
basics
/
unit1.kt
blob: e912495720337a122b28eb1cc4147c06b49d0de5 [
file
]
fun myPrintln
(
a
:
Any
):
Unit
{}
fun box
():
String
{
val unit
=
myPrintln
(
"First"
)
if
(
unit
.
toString
()
!=
"kotlin.Unit"
)
return
"FAIL 1: $unit"
return
"OK"
}