a5f3d5b737
^KT-61259
47 lines
782 B
Kotlin
Vendored
47 lines
782 B
Kotlin
Vendored
/*
|
|
* Copyright 2010-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
|
|
* that can be found in the LICENSE file.
|
|
*/
|
|
|
|
package codegen.basics.unit4
|
|
|
|
import kotlin.test.*
|
|
|
|
@Test
|
|
fun runTest() {
|
|
for (x in 0 .. 8) {
|
|
foo(x, Unit)
|
|
}
|
|
println("Done")
|
|
}
|
|
|
|
var global = 42
|
|
|
|
fun foo(x: Int, unit: Unit) {
|
|
var local = 5
|
|
val y: Unit = when (x) {
|
|
0 -> {}
|
|
1 -> local = 6
|
|
2 -> global = 43
|
|
3 -> unit
|
|
4 -> Unit
|
|
5 -> bar()
|
|
6 -> return
|
|
7 -> {
|
|
5
|
|
bar()
|
|
}
|
|
8 -> {
|
|
val z: Any = Unit
|
|
z as Unit
|
|
}
|
|
else -> throw Error()
|
|
}
|
|
|
|
if (y !== Unit) {
|
|
println("Fail at x = $x")
|
|
}
|
|
}
|
|
|
|
fun bar() {
|
|
} |