rust/src/test/ui/rfc-2627-raw-dylib/feature-gate-raw-dylib-2.rs

9 lines
158 B
Rust
Raw Normal View History

2019-09-18 09:40:08 -05:00
#[link(name="foo")]
extern {
#[link_ordinal(42)]
//~^ ERROR: the `#[link_ordinal]` attribute is an experimental feature
fn foo();
}
fn main() {}