Files
kotlin-fork/compiler/testData/codegen/box/unit/kt3634.kt
T
2014-07-25 17:16:40 +04:00

9 lines
74 B
Kotlin
Vendored

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