summary refs log tree commit diff
path: root/src/libsyntax/parse/token.rs
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2013-01-08 11:12:16 -0800
committerPatrick Walton <pcwalton@mimiga.net>2013-01-08 19:27:57 -0800
commita8d37af2473da79be704c9ce2374f278c47177b6 (patch)
tree4d2ed9670352600b81c1132e1b2fc8dcd16c8abb /src/libsyntax/parse/token.rs
parentfd872284bb827f22cd4b38e3e0002efd4c99884f (diff)
downloadrust-a8d37af2473da79be704c9ce2374f278c47177b6.tar.gz
rust-a8d37af2473da79be704c9ce2374f278c47177b6.zip
librustc: Make unqualified identifier searches terminate at the nearest module scope. r=tjc
Diffstat (limited to 'src/libsyntax/parse/token.rs')
-rw-r--r--src/libsyntax/parse/token.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libsyntax/parse/token.rs b/src/libsyntax/parse/token.rs
index f286b15c752..606247b8cbe 100644
--- a/src/libsyntax/parse/token.rs
+++ b/src/libsyntax/parse/token.rs
@@ -8,6 +8,8 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
+use core::prelude::*;
+
 use ast;
 use ast_util;
 use parse::token;