Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
array-literal-index-oob.rs
blob: ca56206fbdf61216e859e4522bc3558e92fb5527 [
file
] [
log
] [
blame
] [
edit
]
//@ build-pass
//@ ignore-pass (test emits codegen-time warnings and verifies that they are not errors)
#![
warn
(
unconditional_panic
)]
fn
main
()
{
&{
[
1
,
2
,
3
][
4
]
};
//~^ WARN operation will panic
}