Warn unused type aliases

This commit is contained in:
Seo Sanghyeon 2016-11-29 00:46:09 +09:00
parent a75909824a
commit 75cd69cf95
5 changed files with 23 additions and 2 deletions

View file

@ -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 {