diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2013-03-01 10:44:43 -0800 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2013-03-02 16:49:30 -0800 |
| commit | a3f728238bb49759a3b3b64599808c3265f2caca (patch) | |
| tree | 21c17b2996b9384e16e64349f6a4413975119f01 /src/libsyntax/parse/parser.rs | |
| parent | 347d19934db06f0467377ec138e7415a119f2a3c (diff) | |
| download | rust-a3f728238bb49759a3b3b64599808c3265f2caca.tar.gz rust-a3f728238bb49759a3b3b64599808c3265f2caca.zip | |
librustc: Forbid chained imports and fix the logic for one-level renaming imports
Diffstat (limited to 'src/libsyntax/parse/parser.rs')
| -rw-r--r-- | src/libsyntax/parse/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/parser.rs b/src/libsyntax/parse/parser.rs index 4c48b49b5d6..b4a74d52fb6 100644 --- a/src/libsyntax/parse/parser.rs +++ b/src/libsyntax/parse/parser.rs @@ -61,10 +61,10 @@ use ast::{vstore_uniq}; use ast; use ast_util::{ident_to_path, operator_prec}; use ast_util; -use classify; use codemap::{span,FssNone, BytePos, spanned, respan, mk_sp}; use codemap; use parse::attr::parser_attr; +use parse::classify; use parse::common::{seq_sep_none, token_to_str}; use parse::common::{seq_sep_trailing_disallowed, seq_sep_trailing_allowed}; use parse::lexer::reader; |
