| 83 | with pytest.raises(TypeError): |
| 84 | |
| 85 | class _Bad(Enum, type_key=_unique_key("BadValue")): |
| 86 | flag: bool |
| 87 | a: ClassVar[_Bad] = entry(flag=True, _value=5) |
| 88 | |
| 89 | |
| 90 | def test_entry_rejects__name_kwarg() -> None: |
nothing calls this directly
no test coverage detected