blob: dddc862b0fa60a3491afb035e739a5ccb711b20f [file] [log] [blame]
#![feature(ffi_const)]
#![crate_type = "lib"]
#[unsafe(ffi_const)] //~ ERROR `#[ffi_const]` may only be used on foreign functions
pub fn foo() {}
#[unsafe(ffi_const)] //~ ERROR `#[ffi_const]` may only be used on foreign functions
macro_rules! bar {
() => {};
}
extern "C" {
#[unsafe(ffi_const)] //~ ERROR `#[ffi_const]` may only be used on foreign functions
static INT: i32;
#[ffi_const] //~ ERROR unsafe attribute used without unsafe
fn bar();
}