diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-10-11 12:29:23 +0200 |
|---|---|---|
| committer | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-11-07 13:50:12 +0100 |
| commit | 8fa8e02c282f6dc4ebcd0f8403a881116a948443 (patch) | |
| tree | 2ae0957dc29e6272fb963caf5842996272397622 /src/libsyntax/parse/tests.rs | |
| parent | da116223c709392db3741d966cb49ea0407de19e (diff) | |
| download | rust-8fa8e02c282f6dc4ebcd0f8403a881116a948443.tar.gz rust-8fa8e02c282f6dc4ebcd0f8403a881116a948443.zip | |
syntax: simplify imports
Diffstat (limited to 'src/libsyntax/parse/tests.rs')
| -rw-r--r-- | src/libsyntax/parse/tests.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/parse/tests.rs b/src/libsyntax/parse/tests.rs index 169eb954efa..201eaca947b 100644 --- a/src/libsyntax/parse/tests.rs +++ b/src/libsyntax/parse/tests.rs @@ -2,8 +2,8 @@ use super::*; use crate::ast::{self, Name, PatKind}; use crate::attr::first_attr_value_str_by_name; -use crate::parse::{ParseSess, PResult}; -use crate::parse::new_parser_from_source_str; +use crate::sess::ParseSess; +use crate::parse::{PResult, new_parser_from_source_str}; use crate::parse::token::Token; use crate::print::pprust::item_to_string; use crate::ptr::P; |
