Files

9 lines
86 B
Python

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