rust/tests/ui/feature-gates/feature-gate-x86_amx_intrinsics.rs
2024-07-11 19:00:49 -07:00

7 lines
119 B
Rust

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