blob: 679175669bc3ac51104a7ac1ad9454222a942ae5 [file] [log] [blame]
Miss Islington (bot)d312b852021-09-25 02:21:13 -07001# Tests that top-level ClassVar is not allowed
2
3from __future__ import annotations
4
5from typing import ClassVar
6
7wrong: ClassVar[int] = 1