mirror of
https://github.com/astral-sh/ruff.git
synced 2025-09-29 13:25:17 +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"])
|