mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 22:18:23 +03:00
8 lines
250 B
Rust
8 lines
250 B
Rust
//@compile-flags: -Zmiri-disable-stacked-borrows
|
|
fn main() {
|
|
let v: Vec<u8> = Vec::with_capacity(10);
|
|
let undef = unsafe { *v.get_unchecked(5) }; //~ ERROR: uninitialized
|
|
let x = undef + 1;
|
|
panic!("this should never print: {}", x);
|
|
}
|