]> git.proxmox.com Git - rustc.git/blob - src/test/ui/attributes/obsolete-attr.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / attributes / obsolete-attr.rs
1 // Obsolete attributes fall back to unstable custom attributes.
2
3 #[ab_isize = "stdcall"] extern "C" {}
4 //~^ ERROR cannot find attribute `ab_isize` in this scope
5
6 #[fixed_stack_segment] fn f() {}
7 //~^ ERROR cannot find attribute `fixed_stack_segment` in this scope
8
9 fn main() {}