about summary refs log tree commit diff
path: root/src/librustc_data_structures
diff options
context:
space:
mode:
authorSeo Sanghyeon <sanxiyn@gmail.com>2016-11-29 00:46:09 +0900
committerSeo Sanghyeon <sanxiyn@gmail.com>2016-12-15 18:35:20 +0900
commit75cd69cf95a69a5ccd6f51c63df9ed1e9182bd8f (patch)
treed9da0cae9b3bc48abc04be1d484a8c3dff71376f /src/librustc_data_structures
parenta75909824ac703f75b53ce9cf36e2922869fe37b (diff)
downloadrust-75cd69cf95a69a5ccd6f51c63df9ed1e9182bd8f.tar.gz
rust-75cd69cf95a69a5ccd6f51c63df9ed1e9182bd8f.zip
Warn unused type aliases
Diffstat (limited to 'src/librustc_data_structures')
-rw-r--r--src/librustc_data_structures/graph/tests.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/librustc_data_structures/graph/tests.rs b/src/librustc_data_structures/graph/tests.rs
index a87410e6e1c..bdefc39a61a 100644
--- a/src/librustc_data_structures/graph/tests.rs
+++ b/src/librustc_data_structures/graph/tests.rs
@@ -11,8 +11,6 @@
 use graph::*;
 use std::fmt::Debug;
 
-type TestNode = Node<&'static str>;
-type TestEdge = Edge<&'static str>;
 type TestGraph = Graph<&'static str, &'static str>;
 
 fn create_graph() -> TestGraph {