blob: 02a3668c10cac01787fad5fe79377ab6e43f4c5f [file] [log] [blame]
from __future__ import annotations
from dataclasses import dataclass
from typing import List
from typing import ClassVar as CV
@dataclass
class A:
a: List[str]
@dataclass
class B(A):
b: CV[int]