def test_ifexp(): a: i32 b: i32 c: bool a = 2 b = 6 if a == 2 else 8 c = True if b > 5 else False