aboutsummaryrefslogtreecommitdiff
path: root/tests/feature_check/reverse_ops.py
blob: 668748bc5742f4d7454030cfd5fe04788237d351 (plain)
1
2
3
4
5
6
7
8
9
class Foo:

    def __radd__(self, other):
        pass

try:
    5 + Foo()
except TypeError:
    print("TypeError")