]> git.proxmox.com Git - rustc.git/blame - src/test/ui/feature-gates/feature-gate-ffi_pure.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / feature-gates / feature-gate-ffi_pure.rs
CommitLineData
f9f354fc
XL
1#![crate_type = "lib"]
2
5869c6ff 3extern "C" {
f9f354fc
XL
4 #[ffi_pure] //~ ERROR the `#[ffi_pure]` attribute is an experimental feature
5 pub fn foo();
6}