The following should generate an error but doesn't. ```python T = TypeVar("T") def takes_type(t: type[T]) -> T: return t() takes_type(Final[int]) ``` `Final` is a special form.