about summary refs log tree commit diff
path: root/src/libsyntax/parse/parser.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-05-29 19:03:06 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-06-05 13:55:11 -0700
commit760b93adc0976121149105db19acf2ad5f631e5d (patch)
tree6c20eba4139bfdd332187122315f7802367d7d6f /src/libsyntax/parse/parser.rs
parent6a585375a01b7c6b52ad93f764220bcb18027ef6 (diff)
downloadrust-760b93adc0976121149105db19acf2ad5f631e5d.tar.gz
rust-760b93adc0976121149105db19acf2ad5f631e5d.zip
Fallout from the libcollections movement
Diffstat (limited to 'src/libsyntax/parse/parser.rs')
-rw-r--r--src/libsyntax/parse/parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs
index 6c09fa20510..4af4385e3c1 100644
--- a/src/libsyntax/parse/parser.rs
+++ b/src/libsyntax/parse/parser.rs
@@ -76,7 +76,7 @@ use parse::token;
 use parse::{new_sub_parser_from_file, ParseSess};
 use owned_slice::OwnedSlice;
 
-use collections::HashSet;
+use std::collections::HashSet;
 use std::mem::replace;
 use std::rc::Rc;
 use std::string::String;