mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 22:31:47 +00:00
7 lines
105 B
Python
7 lines
105 B
Python
"""Test case: f-strings in type annotations."""
|
|
|
|
from typing import List
|
|
|
|
x = 1
|
|
|
|
x: List[f"i{x}nt"] = []
|