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

9 lines
86 B
Python

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