1# Tests python 3.5 opcodes
2#   BINARY_MATRIX_MULTIPLY
3#   INPLACE_MATRIX_MULTIPLY
4
5class Matrix():
6  def __matmul__(self, other):
7    return self
8
9a = Matrix()
10b = Matrix()
11c = a @ b
12a @= b
13