]> git.lizzy.rs Git - rust.git/blob - src/test/ui/feature-gates/feature-gate-ffi_returns_twice.rs
Rollup merge of #94068 - eholk:drop-track-field-assign, r=tmandry
[rust.git] / src / test / ui / feature-gates / feature-gate-ffi_returns_twice.rs
1 #![crate_type = "lib"]
2
3 extern "C" {
4     #[ffi_returns_twice] //~ ERROR the `#[ffi_returns_twice]` attribute is an experimental feature
5     pub fn foo();
6 }