Remove #[macro_use] extern crate tracing from rustc_borrowck.

This commit is contained in:
Nicholas Nethercote
2024-08-30 08:39:41 +10:00
parent 04a07dc314
commit 67556eca99
38 changed files with 38 additions and 3 deletions

View File

@@ -15,9 +15,6 @@
#![warn(unreachable_pub)]
// tidy-alphabetical-end
#[macro_use]
extern crate tracing;
use std::cell::RefCell;
use std::collections::BTreeMap;
use std::marker::PhantomData;
@@ -51,6 +48,7 @@ use rustc_session::lint::builtin::UNUSED_MUT;
use rustc_span::{Span, Symbol};
use rustc_target::abi::FieldIdx;
use smallvec::SmallVec;
use tracing::{debug, instrument};
use self::diagnostics::{AccessKind, IllegalMoveOriginKind, MoveError, RegionName};
use self::location::LocationTable;