(root)/
Python-3.12.0/
Lib/
test/
ann_module6.py
       1  # Tests that top-level ClassVar is not allowed
       2  
       3  from __future__ import annotations
       4  
       5  from typing import ClassVar
       6  
       7  wrong: ClassVar[int] = 1