mirror of
https://github.com/astral-sh/ruff
synced 2026-01-09 07:34:06 -05:00
178 B
178 B
Shadwing declaration
Shadow after incompatible declarations is OK
def _(flag: bool):
if flag:
x: str
else:
x: int
x: bytes = b"foo"