about summary refs log tree commit diff
path: root/tests/ui/limits/issue-69485-var-size-diffs-too-large.rs
blob: 6133183a55cf1b71cd689342c36f04d78febeba6 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ build-fail
//@ only-x86_64
//@ compile-flags: -Zmir-opt-level=0

fn main() {
    Bug::V([0; !0]); //~ ERROR are too big for the target
}

enum Bug {
    V([u8; !0]),
}