diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-10-11 12:46:32 +0200 |
|---|---|---|
| committer | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-11-07 13:50:12 +0100 |
| commit | 9d6768a478b8a6afa1e16dfebe9d79bd3f508cdf (patch) | |
| tree | e1ac4f40d23f1b1600d24362bc53f1536eb977c7 /src/libsyntax/parse/parser/path.rs | |
| parent | 53a50d4e4fdb0b242d637142d0b2d64e7054c35b (diff) | |
| download | rust-9d6768a478b8a6afa1e16dfebe9d79bd3f508cdf.tar.gz rust-9d6768a478b8a6afa1e16dfebe9d79bd3f508cdf.zip | |
syntax::parser::token -> syntax::token
Diffstat (limited to 'src/libsyntax/parse/parser/path.rs')
| -rw-r--r-- | src/libsyntax/parse/parser/path.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/parser/path.rs b/src/libsyntax/parse/parser/path.rs index 4438d61d9ee..2659e0c680e 100644 --- a/src/libsyntax/parse/parser/path.rs +++ b/src/libsyntax/parse/parser/path.rs @@ -3,7 +3,7 @@ use super::{Parser, PResult, TokenType}; use crate::{maybe_whole, ThinVec}; use crate::ast::{self, QSelf, Path, PathSegment, Ident, ParenthesizedArgs, AngleBracketedArgs}; use crate::ast::{AnonConst, GenericArg, AssocTyConstraint, AssocTyConstraintKind, BlockCheckMode}; -use crate::parse::token::{self, Token}; +use crate::token::{self, Token}; use crate::source_map::{Span, BytePos}; use syntax_pos::symbol::{kw, sym}; |
