mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-21 19:33:16 +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() {
|
|
}
|