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

12 lines
136 B
Kotlin

package codegen.basics.unit3
import kotlin.test.*
@Test
fun runTest() {
foo(Unit)
}
fun foo(x: Any) {
println(x.toString())
}