1"""Module for testing the behavior of generics across different modules.""" 2 3from typing import TypeVar, Generic 4 5T = TypeVar('T') 6 7 8class A(Generic[T]): 9 pass 10 11 12class B(Generic[T]): 13 class A(Generic[T]): 14 pass 15