The following code should produce a type error but does not. ```python def func1(**kwargs: int): ... func1(**{"": ""}) ```
The following code should produce a type error but does not.