about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMark Mansi <markm@cs.wisc.edu>2018-03-16 20:38:59 -0500
committerMark Mansi <markm@cs.wisc.edu>2018-03-26 08:37:56 -0500
commitea89b507b37e089e87af5646042b911c84656b4a (patch)
treeff2052273cb43291cb4dac40f44b72fa920bec6e
parenta249d25625fa816ec6448d4784efd8370eb09c17 (diff)
downloadrust-ea89b507b37e089e87af5646042b911c84656b4a.tar.gz
rust-ea89b507b37e089e87af5646042b911c84656b4a.zip
remove unneeded import
-rw-r--r--src/librustc_resolve/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_resolve/lib.rs b/src/librustc_resolve/lib.rs
index 01eda71e9b6..b5043f24eb0 100644
--- a/src/librustc_resolve/lib.rs
+++ b/src/librustc_resolve/lib.rs
@@ -57,7 +57,7 @@ use syntax::ast::{FnDecl, ForeignItem, ForeignItemKind, GenericParam, Generics};
 use syntax::ast::{Item, ItemKind, ImplItem, ImplItemKind};
 use syntax::ast::{Label, Local, Mutability, Pat, PatKind, Path};
 use syntax::ast::{QSelf, TraitItemKind, TraitRef, Ty, TyKind};
-use syntax::feature_gate::{feature_err, emit_feature_err, GateIssue};
+use syntax::feature_gate::{feature_err, GateIssue};
 use syntax::parse::token;
 use syntax::ptr::P;