test: Change bitwise.rs to use ! instead of ~. Should put out burning tinderbox.

This commit is contained in:
Patrick Walton 2011-06-10 11:34:07 -07:00
parent cc3d484d9d
commit d8b271e3b1

View file

@ -11,7 +11,7 @@ fn main() {
assert (b == 1);
assert (a == 2);
assert (~(0xf0) & 0xff == 0xf);
assert (!(0xf0) & 0xff == 0xf);
assert (0xf0 | 0xf == 0xff);
assert (0xf << 4 == 0xf0);
assert (0xf0 >> 4 == 0xf);