about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLoïc BRANSTETT <lolo.branstett@numericable.fr>2022-03-09 00:30:03 +0100
committerLoïc BRANSTETT <lolo.branstett@numericable.fr>2022-03-09 00:30:17 +0100
commite3ea59ada5fdac7bc88ced97b88d0c6675e94783 (patch)
treec34ad686142e23a999800e125f9867dde9f0c993
parentb97dc20784698730bd7bc1a20eabdcd32066d174 (diff)
downloadrust-e3ea59ada5fdac7bc88ced97b88d0c6675e94783.tar.gz
rust-e3ea59ada5fdac7bc88ced97b88d0c6675e94783.zip
Remove unexpected #[cfg(target_pointer_width = "8")] in tests
-rw-r--r--library/core/tests/iter/adapters/step_by.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/library/core/tests/iter/adapters/step_by.rs b/library/core/tests/iter/adapters/step_by.rs
index 6502c7fb795..94f2fa8c25e 100644
--- a/library/core/tests/iter/adapters/step_by.rs
+++ b/library/core/tests/iter/adapters/step_by.rs
@@ -50,8 +50,6 @@ fn test_iterator_step_by_nth() {
 
 #[test]
 fn test_iterator_step_by_nth_overflow() {
-    #[cfg(target_pointer_width = "8")]
-    type Bigger = u16;
     #[cfg(target_pointer_width = "16")]
     type Bigger = u32;
     #[cfg(target_pointer_width = "32")]