2020-03-10 10:10:10 +01:00
|
|
|
// build-fail
|
|
|
|
|
// only-x86_64
|
2020-10-17 00:00:00 +00:00
|
|
|
// compile-flags: -Zmir-opt-level=0
|
2020-03-10 10:10:10 +01:00
|
|
|
|
|
|
|
|
fn main() {
|
2020-11-18 10:42:49 +01:00
|
|
|
Bug::V([0; !0]); //~ ERROR are too big for the current
|
2020-03-10 10:10:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
enum Bug {
|
|
|
|
|
V([u8; !0]),
|
|
|
|
|
}
|