Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
codegen
/
box
/
unit
/
unitClassObject.kt
blob: e4cdbacbe1437865e46e0941582514ebbcbf23cf [
file
] [
log
] [
blame
]
fun box
():
String
{
Unit
val a
=
Unit
val b
=
Unit
if
(
a
!=
b
)
return
"Fail a != b"
if
(
Unit
!=
Unit
)
return
"Fail Unit != Unit"
return
"OK"
}