Can anyone explain why the following doesn\'t compile?
byte b = 255 << 1
The error:
Constant value \'510\' can
byte b = 0xff & (255 << 1);