mirror of
https://github.com/astral-sh/ruff
synced 2026-01-07 06:34:07 -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"