]> git.proxmox.com Git - rustc.git/blame - src/test/run-pass/lint-expr-stmt-attrs-for-early-lints.rs
New upstream version 1.37.0+dfsg1
[rustc.git] / src / test / run-pass / lint-expr-stmt-attrs-for-early-lints.rs
CommitLineData
7453a54e
SL
1#![feature(stmt_expr_attributes)]
2#![deny(unused_parens)]
223e47cc 3
7453a54e
SL
4// Tests that lint attributes on statements/expressions are
5// correctly applied to non-builtin early (AST) lints
c34b1796
AL
6
7fn main() {
7453a54e
SL
8 #[allow(unused_parens)]
9 {
10 let _ = (9);
11 }
c34b1796 12}