diff options
| author | bors <bors@rust-lang.org> | 2023-11-03 14:57:40 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-11-03 14:57:40 +0000 |
| commit | 9c20ddd956426d577d77cb3f57a7db2227a3c6e9 (patch) | |
| tree | a4365ff1310fe9d7231c712a4462880232eb76a3 /compiler/rustc_parse/src/parser/expr.rs | |
| parent | a026bd49e143d10187f22dce621fff31211e1028 (diff) | |
| parent | 6358411da284472e177cf43abe00dcfeb792b815 (diff) | |
| download | rust-9c20ddd956426d577d77cb3f57a7db2227a3c6e9.tar.gz rust-9c20ddd956426d577d77cb3f57a7db2227a3c6e9.zip | |
Auto merge of #117507 - nnethercote:rustc_span, r=Nilstrieb
`rustc_span` cleanups Just some things I found while looking over this crate. r? `@oli-obk`
Diffstat (limited to 'compiler/rustc_parse/src/parser/expr.rs')
| -rw-r--r-- | compiler/rustc_parse/src/parser/expr.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_parse/src/parser/expr.rs b/compiler/rustc_parse/src/parser/expr.rs index 0b5ec9b59ea..36125e138b2 100644 --- a/compiler/rustc_parse/src/parser/expr.rs +++ b/compiler/rustc_parse/src/parser/expr.rs @@ -32,10 +32,10 @@ use rustc_macros::Subdiagnostic; use rustc_session::errors::{report_lit_error, ExprParenthesesNeeded}; use rustc_session::lint::builtin::BREAK_WITH_LABEL_AND_LOOP; use rustc_session::lint::BuiltinLintDiagnostics; -use rustc_span::source_map::{self, Span, Spanned}; +use rustc_span::source_map::{self, Spanned}; use rustc_span::symbol::kw::PathRoot; use rustc_span::symbol::{kw, sym, Ident, Symbol}; -use rustc_span::{BytePos, Pos}; +use rustc_span::{BytePos, Pos, Span}; use thin_vec::{thin_vec, ThinVec}; /// Possibly accepts an `token::Interpolated` expression (a pre-parsed expression |
