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