summaryrefslogtreecommitdiffstats
path: root/src/test/ui/feature-gates/feature-gate-raw-dylib-2.rs
blob: 518aa20dd68ceefc4ae314f044eac8a496ee9d5f (plain)
1
2
3
4
5
6
7
8
#[link(name = "foo")]
extern "C" {
    #[link_ordinal(42)]
    //~^ ERROR: the `#[link_ordinal]` attribute is an experimental feature
    fn foo();
}

fn main() {}