mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-20 19:04:21 +00:00
12 lines
229 B
Rust
12 lines
229 B
Rust
![]() |
#![feature(raw_dylib)]
|
||
|
//~^ WARN the feature `raw_dylib` is incomplete
|
||
|
|
||
|
#[link(name = "foo")]
|
||
|
extern "C" {
|
||
|
#[link_ordinal(3, 4)]
|
||
|
//~^ ERROR incorrect number of arguments to `#[link_ordinal]`
|
||
|
fn foo();
|
||
|
}
|
||
|
|
||
|
fn main() {}
|