python (3.11.7)
       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
       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