about summary refs log tree commit diff
path: root/src/test/ui/custom_attribute.rs
blob: 9cb43ab07ad6d658712806f9bbd2baadb4e6dc4c (plain)
1
2
3
4
5
6
7
8
9
#![feature(stmt_expr_attributes)]

#[foo] //~ ERROR The attribute `foo`
fn main() {
    #[foo] //~ ERROR The attribute `foo`
    let x = ();
    #[foo] //~ ERROR The attribute `foo`
    x
}