blob: 8d5ea0703afa5eecef20abfaa580f24b5d44e5d5 (
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_handler]` function is not allowed to have `#[target_feature]`
fn panic(info: &PanicInfo) -> ! {
unimplemented!();
}
|