diff options
| author | Trevor Gross <t.gross35@gmail.com> | 2024-07-16 16:15:16 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-16 16:15:16 -0500 |
| commit | 059222ddc952f856544b9f1d1ffd2cd728040dfe (patch) | |
| tree | 95f04f03d22aca67eaa1e55a084c8a7ef585d6d5 /src | |
| parent | d18a7415694dde2fb953a967a59fd06b0c445154 (diff) | |
| parent | e86fbcfd7048dba4eb9b6461069f476d273a3b64 (diff) | |
Rollup merge of #127501 - compiler-errors:invert-infer-error-mod-struture, r=lcnr
Invert infer `error_reporting` mod struture Parallel change to #127493, which moves `rustc_infer::infer::error_reporting` to `rustc_infer::error_reporting::infer`. After this, we should just be able to merge this into `rustc_trait_selection::error_reporting::infer`, and pull down `TypeErrCtxt` into that crate. 👍 r? lcnr
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/clippy/tests/ui/track-diagnostics.stderr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/clippy/tests/ui/track-diagnostics.stderr b/src/tools/clippy/tests/ui/track-diagnostics.stderr index 410e80f2528..3c7577dd003 100644 --- a/src/tools/clippy/tests/ui/track-diagnostics.stderr +++ b/src/tools/clippy/tests/ui/track-diagnostics.stderr @@ -3,7 +3,7 @@ error[E0308]: mismatched types | LL | const S: A = B; | ^ expected `A`, found `B` --Ztrack-diagnostics: created at compiler/rustc_infer/src/infer/error_reporting/mod.rs:LL:CC +-Ztrack-diagnostics: created at compiler/rustc_infer/src/error_reporting/infer/mod.rs:LL:CC error: aborting due to 1 previous error |
