14 lines
325 B
Rust
Raw Normal View History

// error-pattern: but alignment 4 is required
2016-07-06 11:19:24 +02:00
fn main() {
// No retry needed, this fails reliably.
2016-07-06 11:19:24 +02:00
let mut x = [0u8; 20];
2020-04-13 17:51:22 +02:00
let x_ptr: *mut u8 = x.as_mut_ptr();
2020-04-14 09:50:20 +02:00
// At least one of these is definitely unaligned.
2016-07-06 11:19:24 +02:00
unsafe {
*(x_ptr as *mut u32) = 42;
*(x_ptr.add(1) as *mut u32) = 42;
2016-07-06 11:19:24 +02:00
}
}