blob: c96f4f7d820895a2dd73683039ddf632ad36e980 (
plain)
1
2
3
4
5
|
// { dg-additional-options "-w" }
fn main() {
let array: [i32; 5] = [1, 2, 3];
// { dg-error "expected an array with a fixed size of 5 elements, found one with 3 elements" "" { target *-*-* } .-1 }
}
|