mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-01 13:52:22 +00:00
11 lines
188 B
Rust
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() {
|
|
}
|