summaryrefslogtreecommitdiffstats
path: root/tests/ui/ffi_returns_twice.rs
blob: 845e18df11b54f8975fef122b0a17ceceea2d6ac (plain)
1
2
3
4
5
#![feature(ffi_returns_twice)]
#![crate_type = "lib"]

#[ffi_returns_twice] //~ ERROR `#[ffi_returns_twice]` may only be used on foreign functions
pub fn foo() {}