mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 14:21:53 +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
|