os-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
147 B
Rust
Raw Normal View History

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