12 lines
225 B
Rust
12 lines
225 B
Rust
|
|
#![feature(raw_dylib)]
|
||
|
|
//~^ WARN the feature `raw_dylib` is incomplete
|
||
|
|
|
||
|
|
#[link(name = "foo")]
|
||
|
|
extern "C" {
|
||
|
|
#[link_ordinal()]
|
||
|
|
//~^ ERROR incorrect number of arguments to `#[link_ordinal]`
|
||
|
|
fn foo();
|
||
|
|
}
|
||
|
|
|
||
|
|
fn main() {}
|