about summary refs log tree commit diff
path: root/tests/ui/feature-gates/feature-gated-feature-in-macro-arg.rs
blob: 44c0f1130f05d5a15f51148e9379a5d8fba67c95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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
    });
}