summaryrefslogtreecommitdiffstats
path: root/tests/ui/panic-handler/panic-handler-with-target-feature.rs
blob: 8ea0275d7e99ac146c03e364cdbb4f9e29d42b93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// compile-flags:-C panic=abort
// only-x86_64

#![feature(target_feature_11)]
#![no_std]
#![no_main]

use core::panic::PanicInfo;

#[panic_handler]
#[target_feature(enable = "avx2")]
//~^ ERROR `panic_impl` language item function is not allowed to have `#[target_feature]`
fn panic(info: &PanicInfo) -> ! {
    unimplemented!();
}