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

21 lines
361 B
Kotlin
Vendored

// FIR_IDENTICAL
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
}
}