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

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