about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorltdk <usr@ltdk.xyz>2023-10-13 02:44:19 -0400
committerltdk <usr@ltdk.xyz>2023-11-02 20:35:20 -0400
commit8337e86b28b9cdab7250e39710a1c81b99aeeb8d (patch)
treea64a6c81265c4f270f95b56c0f1e39c12b727eb0 /src
parent075409ddd9bf30602c7654e37127e1dbbb460871 (diff)
downloadrust-8337e86b28b9cdab7250e39710a1c81b99aeeb8d.tar.gz
rust-8337e86b28b9cdab7250e39710a1c81b99aeeb8d.zip
Add insta-stable std::hash::{DefaultHasher, RandomState} exports
Diffstat (limited to 'src')
-rw-r--r--src/tools/compiletest/src/runtest.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tools/compiletest/src/runtest.rs b/src/tools/compiletest/src/runtest.rs
index e74d66a8599..f5d60177a16 100644
--- a/src/tools/compiletest/src/runtest.rs
+++ b/src/tools/compiletest/src/runtest.rs
@@ -20,12 +20,11 @@ use regex::{Captures, Regex};
 use rustfix::{apply_suggestions, get_suggestions_from_json, Filter};
 
 use std::borrow::Cow;
-use std::collections::hash_map::DefaultHasher;
 use std::collections::{HashMap, HashSet};
 use std::env;
 use std::ffi::{OsStr, OsString};
 use std::fs::{self, create_dir_all, File, OpenOptions};
-use std::hash::{Hash, Hasher};
+use std::hash::{DefaultHasher, Hash, Hasher};
 use std::io::prelude::*;
 use std::io::{self, BufReader};
 use std::iter;