Files
TencentOS-tiny/components/language/micropython/tests/feature_check/reverse_ops.py
2022-09-29 12:10:37 +08:00

10 lines
117 B
Python

class Foo:
def __radd__(self, other):
pass
try:
5 + Foo()
except TypeError:
print("TypeError")