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