Files
openide/python/testData/resolve/RMatMul.py
T

9 lines
87 B
Python

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