diff options
| author | Michael Goulet <michael@errs.io> | 2024-08-11 12:30:38 -0400 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2024-08-11 19:40:03 -0400 |
| commit | b5d2079fb9c9ac9f0fe594f65452b4097e71c2de (patch) | |
| tree | 9addb8b88143b051b163264d207f1189d32c3541 /compiler/rustc_trait_selection/src | |
| parent | c5205e9d56d3c632e83e1e5f0853d3bd82f16c0e (diff) | |
| download | rust-b5d2079fb9c9ac9f0fe594f65452b4097e71c2de.tar.gz rust-b5d2079fb9c9ac9f0fe594f65452b4097e71c2de.zip | |
Rename normalization functions to raw
Diffstat (limited to 'compiler/rustc_trait_selection/src')
| -rw-r--r-- | compiler/rustc_trait_selection/src/traits/project.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_trait_selection/src/traits/project.rs b/compiler/rustc_trait_selection/src/traits/project.rs index 4b62a5c59b2..0e4233ba7bc 100644 --- a/compiler/rustc_trait_selection/src/traits/project.rs +++ b/compiler/rustc_trait_selection/src/traits/project.rs @@ -1110,7 +1110,7 @@ fn assemble_candidates_from_impls<'cx, 'tcx>( | ty::Error(_) => false, } } else if tcx.is_lang_item(trait_ref.def_id, LangItem::PointeeTrait) { - let tail = selcx.tcx().struct_tail_with_normalize( + let tail = selcx.tcx().struct_tail_raw( self_ty, |ty| { // We throw away any obligations we get from this, since we normalize |
