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