summary refs log tree commit diff
path: root/src/libsyntax/parse/attr.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2013-02-25 14:11:21 -0500
committerAlex Crichton <alex@alexcrichton.com>2013-02-28 18:00:34 -0500
commit2df07ddc250b64151401e9b8569a6c7ad5c9b34f (patch)
treeb79fe795609676370a0c19ba809357e45efcc8cc /src/libsyntax/parse/attr.rs
parentf2837fa3f53b304b5c9a79d733dfd56da5f32637 (diff)
downloadrust-2df07ddc250b64151401e9b8569a6c7ad5c9b34f.tar.gz
rust-2df07ddc250b64151401e9b8569a6c7ad5c9b34f.zip
Fix implicit leaks of imports throughout libraries
Also touch up use of 'pub' and move some tests around so the tested functions
don't have to be 'pub'
Diffstat (limited to 'src/libsyntax/parse/attr.rs')
-rw-r--r--src/libsyntax/parse/attr.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsyntax/parse/attr.rs b/src/libsyntax/parse/attr.rs
index c0c97a0b9eb..b5c4ff3ddd7 100644
--- a/src/libsyntax/parse/attr.rs
+++ b/src/libsyntax/parse/attr.rs
@@ -15,6 +15,7 @@ use codemap::spanned;
 use codemap::BytePos;
 use parse::common::*; //resolve bug?
 use parse::token;
+use parse::parser::Parser;
 
 use core::either::{Either, Left, Right};