mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +00:00
8 lines
163 B
Python
8 lines
163 B
Python
"""Test case: ForwardRef."""
|
|
|
|
from typing import ForwardRef, TypeVar
|
|
|
|
X = ForwardRef("List[int]")
|
|
Y: ForwardRef("List[int]")
|
|
|
|
Z = TypeVar("X", "List[int]", "int")
|