Files
RustPython/Lib/test/typinganndata/ann_module6.py
NakanoMiku39 06b9b4938d Add Lib/test/typinganndata folder
cpython version: 3.12
2023-11-09 15:05:04 +08:00

8 lines
138 B
Python
Vendored

# Tests that top-level ClassVar is not allowed
from __future__ import annotations
from typing import ClassVar
wrong: ClassVar[int] = 1