13 lines
150 B
Kotlin
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
|
|
} |