mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
12 lines
206 B
Rust
12 lines
206 B
Rust
//@ run-fail
|
|
//@ error-pattern:index out of bounds: the len is 5 but the index is 5
|
|
//@ ignore-emscripten no processes
|
|
|
|
const fn test(x: usize) -> i32 {
|
|
[42;5][x]
|
|
}
|
|
|
|
fn main () {
|
|
let _ = test(5);
|
|
}
|