summaryrefslogtreecommitdiffstats
path: root/src/test/ui/rfc-2627-raw-dylib/link-ordinal-missing-argument.rs
blob: c391ccd1c822766543bd273b475c76602ab14f1b (plain)
1
2
3
4
5
6
7
8
9
10
11
#![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() {}