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 }