about summary refs log tree commit diff
path: root/compiler/rustc_infer/src/traits/project.rs
diff options
context:
space:
mode:
authorNicholas Nethercote <n.nethercote@gmail.com>2023-04-17 07:16:25 +1000
committerNicholas Nethercote <n.nethercote@gmail.com>2023-04-26 15:19:50 +1000
commit671de6d62a21de60073d2e4d0f8ccfcd5ea826bd (patch)
tree84031c7b0df030062e5e08c26c9d4feb6b765a5f /compiler/rustc_infer/src/traits/project.rs
parent458d4dae845ec155b285681a5b88305641abb868 (diff)
downloadrust-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.rs2
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>>,