mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
10 lines
146 B
Rust
10 lines
146 B
Rust
|
// check-pass
|
||
|
|
||
|
fn main() {
|
||
|
let array = [0x42u8; 10];
|
||
|
for b in &array {
|
||
|
let lo = b & 0xf;
|
||
|
let hi = (b >> 4) & 0xf;
|
||
|
}
|
||
|
}
|