For example: ```py called = [False] class test(int): def __radd__(self, other): called[0] = True return NotImplemented assert 1 + test() == 1 # throws with ipy assert called[0] ``` Similar to https://github.com/IronLanguages/ironpython3/issues/560. See also https://github.com/IronLanguages/ironpython3/pull/1478.
For example:
Similar to #560. See also #1478.