rust/src/test/ui/expr_attr_paren_order.rs
2018-12-25 21:08:33 -07:00

25 lines
456 B
Rust

#![feature(stmt_expr_attributes)]
fn main() {
// Test that attributes on parens get concatenated
// in the expected order in the hir folder.
#[deny(non_snake_case)] (
#![allow(non_snake_case)]
{
let X = 0;
let _ = X;
}
);
#[allow(non_snake_case)] (
#![deny(non_snake_case)]
{
let X = 0; //~ ERROR snake case name
let _ = X;
}
);
}