diff options
Diffstat (limited to 'tests/ui/auxiliary/using-target-feature-unstable.rs')
-rw-r--r-- | tests/ui/auxiliary/using-target-feature-unstable.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/ui/auxiliary/using-target-feature-unstable.rs b/tests/ui/auxiliary/using-target-feature-unstable.rs new file mode 100644 index 000000000..268202893 --- /dev/null +++ b/tests/ui/auxiliary/using-target-feature-unstable.rs @@ -0,0 +1,5 @@ +#![feature(avx512_target_feature)] + +#[inline] +#[target_feature(enable = "avx512ifma")] +pub unsafe fn foo() {} |