This code passes silently, but obviously fails at runtime: ```python from collections import TypeVar from weakref import Generic from getopt import List T = TypeVar('T') class C(Generic[T], List[int]): ... ```