mirror of
https://github.com/astral-sh/ruff.git
synced 2025-10-01 14:21:53 +00:00
11 lines
234 B
Python
11 lines
234 B
Python
"""Test case: `Literal` with `__future__` annotations."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Literal, Final
|
|
|
|
from typing_extensions import assert_type
|
|
|
|
CONSTANT: Final = "ns"
|
|
|
|
assert_type(CONSTANT, Literal["ns"])
|