1# flake8: noqa 2import torch 3 4 5# binary ops: <<, >>, |, &, ~, ^ 6 7a = torch.ones(3, dtype=torch.float64) 8i = int() 9 10i | a # E: Unsupported operand types 11