blob: d9a60b4b28c325aea1b82fe888504c7491095b67 [file] [log] [blame]
"""Module for testing the behavior of generics across different modules."""
from typing import TypeVar, Generic
T = TypeVar('T')
class A(Generic[T]):
pass
class B(Generic[T]):
class A(Generic[T]):
pass