mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 07:26:06 +00:00
10 lines
174 B
Rust
10 lines
174 B
Rust
// Test spans of errors
|
|
|
|
const TUP: (usize,) = 5usize << 64;
|
|
//~^ ERROR mismatched types
|
|
//~| expected `(usize,)`, found `usize`
|
|
const ARR: [i32; TUP.0] = [];
|
|
|
|
fn main() {
|
|
}
|