]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-ffi_pure.rs
Sync rust-lang/portable-simd@5f49d4c8435a25d804b2f375e949cb25479f5be9
[rust.git] / src / test / ui / feature-gates / feature-gate-ffi_pure.rs
1 #![crate_type = "lib"]
2
3 extern "C" {
4     #[ffi_pure] //~ ERROR the `#[ffi_pure]` attribute is an experimental feature
5     pub fn foo();
6 }