rust/tests/ui/limits/issue-69485-var-size-diffs-too-large.rs

12 lines
172 B
Rust
Raw Normal View History

//@ build-fail
//@ only-x86_64
//@ compile-flags: -Zmir-opt-level=0
fn main() {
2024-09-20 07:39:10 +00:00
Bug::V([0; !0]); //~ ERROR are too big for the target
}
enum Bug {
V([u8; !0]),
}