rust/src/test/ui/lint/issue-69485-var-size-diffs-too-large.rs

11 lines
133 B
Rust
Raw Normal View History

// build-fail
// only-x86_64
fn main() {
Bug::V([0; !0]); //~ ERROR is too big for the current
}
enum Bug {
V([u8; !0]),
}