diff --git a/Examples/test-suite/python/python_overload_simple_cast_runme.py b/Examples/test-suite/python/python_overload_simple_cast_runme.py index fc398ab29..7a0174af8 100644 --- a/Examples/test-suite/python/python_overload_simple_cast_runme.py +++ b/Examples/test-suite/python/python_overload_simple_cast_runme.py @@ -9,6 +9,8 @@ class Ai: def __int__(self): return self.x + def __index__(self): + return self.x class Ad: