]> git.lizzy.rs Git - rust.git/blob - src/tools/miri/tests/fail/unaligned_pointers/unaligned_ptr3.rs
Rollup merge of #102095 - oli-obk:simplify, r=TaKO8Ki
[rust.git] / src / tools / miri / tests / fail / unaligned_pointers / unaligned_ptr3.rs
1 // This should fail even without validation or Stacked Borrows.
2 //@compile-flags: -Zmiri-disable-validation -Zmiri-disable-stacked-borrows
3
4 fn main() {
5     // Try many times as this might work by chance.
6     for _ in 0..10 {
7         let x = [2u16, 3, 4, 5]; // Make it big enough so we don't get an out-of-bounds error.
8         let x = &x[0] as *const _ as *const *const u8; // cast to ptr-to-ptr, so that we load a ptr
9         // This must fail because alignment is violated. Test specifically for loading pointers,
10         // which have special code in miri's memory.
11         let _x = unsafe { *x }; //~ERROR: but alignment
12     }
13 }