The following test should pass: ```py def test_operation_instance_identity(): @dataclasses.dataclass class A: @Operation.define def f(self) -> int: raise NotHandled a = A() assert a.f().op == a.f assert a.f().op == a.f().op ```
The following test should pass: