| 312 | |
| 313 | def test_frozen_variants() -> None: |
| 314 | class Frozen(Enum, type_key=_unique_key("Frozen")): |
| 315 | flag: bool |
| 316 | yes: ClassVar[Frozen] = entry(flag=True) |
| 317 | |
| 318 | with pytest.raises(AttributeError): |
| 319 | Frozen.yes.flag = False # ty: ignore[invalid-assignment] |
nothing calls this directly
no test coverage detected