We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1e17f5 commit 8631e1cCopy full SHA for 8631e1c
src/test/ui/issues/issue-68951.rs
@@ -0,0 +1,9 @@
1
+// check-pass
2
+
3
+fn main() {
4
+ let array = [0x42u8; 10];
5
+ for b in &array {
6
+ let lo = b & 0xf;
7
+ let hi = (b >> 4) & 0xf;
8
+ }
9
+}
0 commit comments