mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 06:11:43 +00:00
9 lines
148 B
Python
9 lines
148 B
Python
"""Test case: f-strings in future type annotations."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import List
|
|
|
|
x = 1
|
|
|
|
x: List[f"i{x}nt"] = []
|