]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-ffi_pure.rs
Auto merge of #81047 - glittershark:stabilize-cmp-min-max-by, r=kodraus
[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 }