blob: 82fb1151c23df9d7db661d94003a923ec2bc18a0 [file] [log] [blame]
#![feature(raw_dylib)]
//~^ WARN the feature `raw_dylib` is incomplete and may cause the compiler to crash
#[link(name="foo")]
extern {
#[link_ordinal("JustMonika")]
//~^ ERROR illegal ordinal format in `link_ordinal`
fn foo();
}
fn main() {}