10 lines
124 B
Kotlin
10 lines
124 B
Kotlin
package codegen.branching.when6
|
|
|
|
import kotlin.test.*
|
|
|
|
fun foo() {
|
|
}
|
|
|
|
@Test fun runTest() {
|
|
if (true) foo() else foo()
|
|
} |