test: Change bitwise.rs to use ! instead of ~. Should put out burning tinderbox.
This commit is contained in:
parent
cc3d484d9d
commit
d8b271e3b1
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue