diff options
| author | Aaron Hill <aa1ronham@gmail.com> | 2020-09-29 00:31:13 -0400 |
|---|---|---|
| committer | Aaron Hill <aa1ronham@gmail.com> | 2020-10-11 12:09:48 -0400 |
| commit | 477ce31d37af4630f61620ea5422276f0aa79582 (patch) | |
| tree | 2e04d3f7bfc8fbf147c4556eee40a2dad68d9754 | |
| parent | 820953819c490adfe40b488aad32c8eef7d2ecd1 (diff) | |
| download | rust-477ce31d37af4630f61620ea5422276f0aa79582.tar.gz rust-477ce31d37af4630f61620ea5422276f0aa79582.zip | |
Remove unused import
| -rw-r--r-- | compiler/rustc_parse/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_parse/src/lib.rs b/compiler/rustc_parse/src/lib.rs index dbdabdbb8e5..cceaa08daa4 100644 --- a/compiler/rustc_parse/src/lib.rs +++ b/compiler/rustc_parse/src/lib.rs @@ -8,7 +8,7 @@ use rustc_ast as ast; use rustc_ast::token::{self, DelimToken, Nonterminal, Token, TokenKind}; -use rustc_ast::tokenstream::{self, Spacing, TokenStream, TokenTree}; +use rustc_ast::tokenstream::{self, TokenStream, TokenTree}; use rustc_ast_pretty::pprust; use rustc_data_structures::sync::Lrc; use rustc_errors::{Diagnostic, FatalError, Level, PResult}; |
