mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
10 lines
194 B
Rust
10 lines
194 B
Rust
//@ run-fail
|
|
//@ error-pattern:index out of bounds
|
|
//@ ignore-emscripten no processes
|
|
|
|
use std::mem::size_of;
|
|
|
|
fn main() {
|
|
let xs = [1, 2, 3];
|
|
xs[usize::MAX / size_of::<isize>() + 1];
|
|
}
|