blob: 778a212249c19d68aa0b944ac89ca36d78f250ba [file] [log] [blame]
// Test spans of errors
const TUP: (usize,) = 5usize << 64;
//~^ ERROR mismatched types
//~| expected tuple, found `usize`
const ARR: [i32; TUP.0] = [];
//~^ constant
fn main() {
}