diff options
| author | Nicholas Nethercote <n.nethercote@gmail.com> | 2023-04-17 07:16:25 +1000 |
|---|---|---|
| committer | Nicholas Nethercote <n.nethercote@gmail.com> | 2023-04-26 15:19:50 +1000 |
| commit | 671de6d62a21de60073d2e4d0f8ccfcd5ea826bd (patch) | |
| tree | 84031c7b0df030062e5e08c26c9d4feb6b765a5f /compiler/rustc_infer/src/traits/project.rs | |
| parent | 458d4dae845ec155b285681a5b88305641abb868 (diff) | |
| download | rust-671de6d62a21de60073d2e4d0f8ccfcd5ea826bd.tar.gz rust-671de6d62a21de60073d2e4d0f8ccfcd5ea826bd.zip | |
Remove unused `TypeFoldable`/`TypeVisitable` impls.
Diffstat (limited to 'compiler/rustc_infer/src/traits/project.rs')
| -rw-r--r-- | compiler/rustc_infer/src/traits/project.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_infer/src/traits/project.rs b/compiler/rustc_infer/src/traits/project.rs index 8d0af738dd1..e375d611936 100644 --- a/compiler/rustc_infer/src/traits/project.rs +++ b/compiler/rustc_infer/src/traits/project.rs @@ -20,7 +20,7 @@ pub struct MismatchedProjectionTypes<'tcx> { pub err: ty::error::TypeError<'tcx>, } -#[derive(Clone, TypeFoldable, TypeVisitable)] +#[derive(Clone)] pub struct Normalized<'tcx, T> { pub value: T, pub obligations: Vec<PredicateObligation<'tcx>>, |
