Files
kotlin-fork/compiler/testData/codegen/box/unit/kt3634.kt
T
Alexander Udalov 0d9c126485 Add regression test for KT-3634
#KT-3634 Obsolete
2013-12-11 07:40:19 +04:00

9 lines
80 B
Kotlin

val c = Unit.VALUE
val d = c
fun box(): String {
c
d
return "OK"
}