Files
openide/python/testData/resolve/RMatMul.py
2015-03-24 18:42:45 +03:00

9 lines
87 B
Python

class C:
def __rmatmul__(self, other):
return self
x = C()
y @ x
# <ref>