rust/tests/ui/issues/issue-68951.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
146 B
Rust
Raw Normal View History

2020-10-01 05:10:23 +00:00
// check-pass
fn main() {
let array = [0x42u8; 10];
for b in &array {
let lo = b & 0xf;
let hi = (b >> 4) & 0xf;
}
}