Sign in
rust
/
rust
/
refs/heads/try-perf
/
.
/
tests
/
ui
/
consts
/
empty-array-index-in-struct-init.rs
blob: c0b77abf03517e07c541fcecc755055afdf884ea [
file
] [
edit
]
//! Regression test for https://github.com/rust-lang/rust/issues/53275
//@ build-pass
#![
crate_type
=
"lib"
]
#![
allow
(
unconditional_panic
)]
struct
S
(
u8
);
pub
fn
ice
()
{
S
([][
0
]);
}