mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
9 lines
278 B
Rust
9 lines
278 B
Rust
// Obsolete attributes fall back to unstable custom attributes.
|
|
|
|
#[ab_isize = "stdcall"] extern "C" {}
|
|
//~^ ERROR cannot find attribute `ab_isize` in this scope
|
|
|
|
#[fixed_stack_segment] fn f() {}
|
|
//~^ ERROR cannot find attribute `fixed_stack_segment` in this scope
|
|
|
|
fn main() {}
|