``` def main(cond: bool) -> None: woo = None if cond and (woo := 5) in range(10): reveal_type(woo) # should reveal int, reveals int | None ```