rustc/tests/ui/consts/const-tup-index-span.rs
2023-09-11 11:26:34 +02:00

11 lines
188 B
Rust

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