summary refs log tree commit diff
path: root/src/test/ui/feature-gates/feature-gate-native_link_modifiers.rs
blob: 2d00aa2a3cfcbb8fc48f30d3a16248480a53e9c6 (plain)
1
2
3
4
5
#[link(name = "foo", modifiers = "")]
//~^ ERROR: native link modifiers are experimental
extern "C" {}

fn main() {}