syntax: Remove use of pub use globs

`quote_expr!` now injects two more (priv) `use` globs.
This may cause extra unused_imports warning.
This commit is contained in:
klutzy
2014-05-29 12:19:05 +09:00
parent e38fde71b1
commit 976c8324e1
19 changed files with 41 additions and 12 deletions

View File

@@ -20,6 +20,7 @@
html_root_url = "http://doc.rust-lang.org/")]
#![feature(macro_registrar, managed_boxes, quote)]
#![allow(unused_imports)] // `quote_expr!` adds some `use` globs which may be unused
extern crate regex;
extern crate syntax;