mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 09:29:33 +00:00
7 lines
118 B
Rust
7 lines
118 B
Rust
const TUP: (usize,) = (42,);
|
|
|
|
fn main() {
|
|
let a: [isize; TUP.1];
|
|
//~^ ERROR no field `1` on type `(usize,)`
|
|
}
|