blob: 0895f4c18e3879b3a674f70b38b72ea5a3e929fe [file] [log] [blame]
// build-fail
// only-x86_64
// compile-flags: -Zmir-opt-level=0
fn main() {
Bug::V([0; !0]); //~ ERROR is too big for the current
}
enum Bug {
V([u8; !0]),
}