1# test bytes + bytearray
2
3print(b"123" + bytearray(2))
4
5print(b"" + bytearray(1)) # LHS is empty but can't be optimised
6