rust/compiler/rustc_middle/src/util
Nicholas Nethercote af6020320d Simplify intra-crate qualifiers.
The following is a weird pattern for a file within `rustc_middle`:
```
use rustc_middle::aaa;
use crate::bbb;
```
More sensible and standard would be this:
```
use crate::{aaa, bbb};
```
I.e. we generally prefer using `crate::` to using a crate's own name.
(Exceptions are things like in macros where `crate::` doesn't work
because the macro is used in multiple crates.)

This commit fixes a bunch of these weird qualifiers.
2025-02-11 14:59:13 +11:00
..
bug.rs Give a better explanation for having bug_fmt and span_bug_fmt. 2025-01-31 16:04:07 +11:00
mod.rs Simplify intra-crate qualifiers. 2025-02-11 14:59:13 +11:00