rust/tests/ui/feature-gates/feature-gate-apx-target-feature.rs
2025-05-06 23:28:28 +05:30

7 lines
115 B
Rust

//@ only-x86_64
#[target_feature(enable = "apxf")]
//~^ ERROR: currently unstable
unsafe fn foo() {}
fn main() {}