about summary refs log tree commit diff
path: root/library/stdarch/crates/std_detect/tests
diff options
context:
space:
mode:
authorYuri Astrakhan <yuriastrakhan@gmail.com>2022-10-25 15:17:23 -0400
committerGitHub <noreply@github.com>2022-10-25 20:17:23 +0100
commit81c221f05816a8eaadafec19e9c40273e9d23c71 (patch)
tree524b9addbba5217539fe30e8bde76b61bba8431e /library/stdarch/crates/std_detect/tests
parent4273e3cf8b580381c64525b8c55abf17519743ee (diff)
downloadrust-81c221f05816a8eaadafec19e9c40273e9d23c71.tar.gz
rust-81c221f05816a8eaadafec19e9c40273e9d23c71.zip
Edition 2021, apply clippy::uninlined_format_args fix (#1339)
Diffstat (limited to 'library/stdarch/crates/std_detect/tests')
-rw-r--r--library/stdarch/crates/std_detect/tests/cpu-detection.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/stdarch/crates/std_detect/tests/cpu-detection.rs b/library/stdarch/crates/std_detect/tests/cpu-detection.rs
index ca8bf28f448..9daaa658044 100644
--- a/library/stdarch/crates/std_detect/tests/cpu-detection.rs
+++ b/library/stdarch/crates/std_detect/tests/cpu-detection.rs
@@ -15,7 +15,7 @@ extern crate std_detect;
 #[test]
 fn all() {
     for (f, e) in std_detect::detect::features() {
-        println!("{}: {}", f, e);
+        println!("{f}: {e}");
     }
 }