blob: ecd3cea9b2b522ef384c7a2ea486f12f8944282d [file]
// FIR_IDENTICAL
// !CHECK_TYPE
fun test() {
val a = if (true) {
val x = 1
({ x })
} else {
{ 2 }
}
a checkType { _<() -> Int>() }
}