Files
kotlin-fork/backend.native/tests/codegen/basics/unit2.kt
T
2017-10-20 18:25:05 +03:00

13 lines
150 B
Kotlin

package codegen.basics.unit2
import kotlin.test.*
@Test
fun runTest() {
val x = foo()
println(x.toString())
}
fun foo() {
return Unit
}