mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-22 20:47:48 +00:00
7 lines
221 B
Rust
7 lines
221 B
Rust
fn main() {
|
|
let v: Vec<u8> = Vec::with_capacity(10);
|
|
let undef = unsafe { *v.get_unchecked(5) };
|
|
let x = undef + 1; //~ ERROR: attempted to read undefined bytes
|
|
panic!("this should never print: {}", x);
|
|
}
|