1# test errors from bad operations (unary, binary, etc)
2try:
3    memoryview
4except:
5    print("SKIP")
6    raise SystemExit
7
8# unsupported binary operators
9try:
10    m = memoryview(bytearray())
11    m += bytearray()
12except TypeError:
13    print('TypeError')
14