mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-31 21:47:15 +03:00
12 lines
188 B
Rust
12 lines
188 B
Rust
//! 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]);
|
|
}
|