mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-30 13:51:37 +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"] = []
|