1# Tests that top-level ClassVar is not allowed
2
3from __future__ import annotations
4
5from typing import ClassVar
6
7wrong: ClassVar[int] = 1
8