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