rust/tests/ui/lint/unused/issue-105061-array-lint.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
342 B
Rust
Raw Normal View History

2023-01-14 03:03:25 -06:00
#![warn(unused)]
#![deny(warnings)]
fn main() {
let _x: ([u32; 3]); //~ ERROR unnecessary parentheses around type
let _y: [u8; (3)]; //~ ERROR unnecessary parentheses around const expression
let _z: ([u8; (3)]);
//~^ ERROR unnecessary parentheses around const expression
//~| ERROR unnecessary parentheses around type
}