about summary refs log tree commit diff
path: root/src/librustc_data_structures/graph/implementation
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2018-07-02 10:40:03 -0400
committerNiko Matsakis <niko@alum.mit.edu>2018-07-12 00:38:40 -0400
commit0052ddd8aec0701aa8444ad780fa4ebb123301ff (patch)
tree7e3b6d838c62b274c32b952afe5d9e6ac847b5d7 /src/librustc_data_structures/graph/implementation
parentdab206f8b57bba507436e23e0e80a6d1ed80bfc4 (diff)
downloadrust-0052ddd8aec0701aa8444ad780fa4ebb123301ff.tar.gz
rust-0052ddd8aec0701aa8444ad780fa4ebb123301ff.zip
introduce a generic SCC computation
Diffstat (limited to 'src/librustc_data_structures/graph/implementation')
-rw-r--r--src/librustc_data_structures/graph/implementation/tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_data_structures/graph/implementation/tests.rs b/src/librustc_data_structures/graph/implementation/tests.rs
index 007704357af..3814827b5df 100644
--- a/src/librustc_data_structures/graph/implementation/tests.rs
+++ b/src/librustc_data_structures/graph/implementation/tests.rs
@@ -8,7 +8,7 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-use graph::*;
+use graph::implementation::*;
 use std::fmt::Debug;
 
 type TestGraph = Graph<&'static str, &'static str>;