summaryrefslogtreecommitdiffstats
path: root/src/test/ui/feature-gates/feature-gate-ffi_returns_twice.rs
blob: f354534356c212dd804d38ac3969a6b52ac62346 (plain)
1
2
3
4
5
6
#![crate_type = "lib"]

extern "C" {
    #[ffi_returns_twice] //~ ERROR the `#[ffi_returns_twice]` attribute is an experimental feature
    pub fn foo();
}