diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-05-22 14:42:14 +1000 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2024-05-23 18:02:40 +1000 |
| commit | bb364fe9502e1a70c9464bbfdbc40a280caad762 (patch) | |
| tree | 5e4efa5e272cc8a7061147636d5af127952be828 /compiler/rustc_parse/src/parser/expr.rs | |
| parent | 25393640537d3a0a7e8840fb6b12657d2c262275 (diff) | |
| download | rust-bb364fe9502e1a70c9464bbfdbc40a280caad762.tar.gz rust-bb364fe9502e1a70c9464bbfdbc40a280caad762.zip | |
Remove `#[macro_use] extern crate tracing` from `rustc_parse`.
Diffstat (limited to 'compiler/rustc_parse/src/parser/expr.rs')
| -rw-r--r-- | compiler/rustc_parse/src/parser/expr.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_parse/src/parser/expr.rs b/compiler/rustc_parse/src/parser/expr.rs index fd3f63a04de..1b99bc015b6 100644 --- a/compiler/rustc_parse/src/parser/expr.rs +++ b/compiler/rustc_parse/src/parser/expr.rs @@ -36,6 +36,7 @@ use rustc_span::source_map::{self, Spanned}; use rustc_span::symbol::{kw, sym, Ident, Symbol}; use rustc_span::{BytePos, ErrorGuaranteed, Pos, Span}; use thin_vec::{thin_vec, ThinVec}; +use tracing::instrument; /// Possibly accepts an `token::Interpolated` expression (a pre-parsed expression /// dropped into the token stream, which happens while parsing the result of |
