b454fcc1e0
This is needed to avoid clashes between different dumps from different handlers
14 lines
182 B
Kotlin
Vendored
14 lines
182 B
Kotlin
Vendored
fun test1(b: Boolean) {
|
|
when {
|
|
b -> return Unit
|
|
else -> false
|
|
} /*~> Unit */
|
|
}
|
|
|
|
fun test2(b: Boolean) {
|
|
when {
|
|
b -> true
|
|
else -> return Unit
|
|
} /*~> Unit */
|
|
}
|