From b5406fedd45fa9dec157ed011f710e03d37278c5 Mon Sep 17 00:00:00 2001 From: Amanieu d'Antras Date: Tue, 19 Dec 2023 00:54:26 +0000 Subject: [PATCH] Add `#![allow(internal_features)]` to a test to fix CI --- library/stdarch/crates/std_detect/tests/cpu-detection.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/library/stdarch/crates/std_detect/tests/cpu-detection.rs b/library/stdarch/crates/std_detect/tests/cpu-detection.rs index 1a3acfaaffa0..cb57b849d696 100644 --- a/library/stdarch/crates/std_detect/tests/cpu-detection.rs +++ b/library/stdarch/crates/std_detect/tests/cpu-detection.rs @@ -1,3 +1,4 @@ +#![allow(internal_features)] #![feature(stdarch_internal)] #![cfg_attr(target_arch = "arm", feature(stdarch_arm_feature_detection))] #![cfg_attr(target_arch = "powerpc", feature(stdarch_powerpc_feature_detection))]