mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 08:15:58 +00:00
10 lines
200 B
Rust
10 lines
200 B
Rust
//@ known-bug: #131347
|
|
//@ compile-flags: -Zmir-enable-passes=+GVN -Zmir-enable-passes=+Inline -Zvalidate-mir
|
|
|
|
struct S;
|
|
static STUFF: [i8] = [0; S::N];
|
|
|
|
fn main() {
|
|
assert_eq!(STUFF, [0; 63]);
|
|
}
|