rust/tests/ui/feature-gates/feature-gate-raw-dylib-2.rs
2023-01-11 09:32:08 +00:00

13 lines
269 B
Rust

// only-x86
#[link(name = "foo")]
extern "C" {
#[link_ordinal(42)]
//~^ ERROR: `#[link_ordinal]` is unstable on x86
fn foo();
#[link_ordinal(5)]
//~^ ERROR: `#[link_ordinal]` is unstable on x86
static mut imported_variable: i32;
}
fn main() {}