Skip to content

Commit 77f5c87

Browse files
committed
---
yaml --- r: 3026 b: refs/heads/master c: d8b271e h: refs/heads/master v: v3
1 parent ea909a7 commit 77f5c87

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: cc3d484d9d71619c5fbeaf20e7833b75dcc4349f
2+
refs/heads/master: d8b271e3b15404a29cbb430b1d8bafd896c5c8aa

trunk/src/test/run-pass/bitwise.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ fn main() {
1111
assert (b == 1);
1212
assert (a == 2);
1313

14-
assert (~(0xf0) & 0xff == 0xf);
14+
assert (!(0xf0) & 0xff == 0xf);
1515
assert (0xf0 | 0xf == 0xff);
1616
assert (0xf << 4 == 0xf0);
1717
assert (0xf0 >> 4 == 0xf);

0 commit comments

Comments
 (0)