2023-03-02 07:26:12 -06:00
|
|
|
//@ only-x86_64
|
|
|
|
|
|
|
|
#![feature(start)]
|
|
|
|
#![feature(target_feature_11)]
|
|
|
|
|
|
|
|
#[start]
|
|
|
|
#[target_feature(enable = "avx2")]
|
2023-09-22 08:58:43 -05:00
|
|
|
//~^ ERROR `#[start]` function is not allowed to have `#[target_feature]`
|
2023-03-02 07:26:12 -06:00
|
|
|
fn start(_argc: isize, _argv: *const *const u8) -> isize { 0 }
|