mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
8 lines
138 B
Python
Vendored
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
|