summaryrefslogtreecommitdiffstats
path: root/library/core/tests/iter/range.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/core/tests/iter/range.rs')
-rw-r--r--library/core/tests/iter/range.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/library/core/tests/iter/range.rs b/library/core/tests/iter/range.rs
index 84498a8ea..0f91ffe2d 100644
--- a/library/core/tests/iter/range.rs
+++ b/library/core/tests/iter/range.rs
@@ -26,7 +26,6 @@ fn test_range() {
#[test]
fn test_char_range() {
- use std::char;
// Miri is too slow
let from = if cfg!(miri) { char::from_u32(0xD800 - 10).unwrap() } else { '\0' };
let to = if cfg!(miri) { char::from_u32(0xDFFF + 10).unwrap() } else { char::MAX };