]> git.lizzy.rs Git - rust.git/blob - tests/ui/feature-gates/feature-gate-raw-dylib.rs
Rollup merge of #106783 - WaffleLapkin:break-my-ident, r=wesleywiser
[rust.git] / tests / ui / feature-gates / feature-gate-raw-dylib.rs
1 // only-windows
2 // only-x86
3 #[link(name = "foo", kind = "raw-dylib")]
4 //~^ ERROR: link kind `raw-dylib` is unstable on x86
5 extern "C" {}
6
7 fn main() {}