blob: 44c0f1130f05d5a15f51148e9379a5d8fba67c95 [file] [log] [blame]
// tests that input to a macro is checked for use of gated features. If this
// test succeeds due to the acceptance of a feature, pick a new feature to
// test. Not ideal, but oh well :(
fn main() {
let a = &[1, 2, 3];
println!("{}", {
#[rustc_intrinsic] //~ ERROR the `#[rustc_intrinsic]` attribute is used to declare intrinsics as function items
unsafe fn atomic_fence();
atomic_fence(); //~ ERROR: is unsafe
42
});
}