blob: 778a212249c19d68aa0b944ac89ca36d78f250ba (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Test spans of errors
const TUP: (usize,) = 5usize << 64;
//~^ ERROR mismatched types
//~| expected tuple, found `usize`
const ARR: [i32; TUP.0] = [];
//~^ constant
fn main() {
}
|