]> git.proxmox.com Git - rustc.git/blob - src/test/ui/custom_attribute.rs
New upstream version 1.33.0+dfsg1
[rustc.git] / src / test / ui / custom_attribute.rs
1 #![feature(stmt_expr_attributes)]
2
3 #[foo] //~ ERROR The attribute `foo`
4 fn main() {
5 #[foo] //~ ERROR The attribute `foo`
6 let x = ();
7 #[foo] //~ ERROR The attribute `foo`
8 x
9 }