mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 05:15:12 +00:00
5 lines
132 B
Python
5 lines
132 B
Python
"""Test that shadowing a `__future__` import does not produce a warning."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import annotations
|