Files
kotlin-fork/compiler/testData/diagnostics/testsWithStdLib/when/kt10192.fir.kt
T

20 lines
344 B
Kotlin
Vendored

fun test1() {
if (true) {
when (true) {
true -> println()
}
} else {
System.out?.println() // kotlin.Unit?
}
}
fun test2() {
val mlist = arrayListOf("")
if (true) {
when (true) {
true -> println()
}
} else {
mlist.add("") // kotlin.Boolean
}
}