1
Fork 0

Rollup merge of #110838 - nnethercote:more-Folder-Visitable-cleanups, r=lcnr

More `Typefoldable`/`TypeVisitable` cleanups

r? ``@lcnr``
This commit is contained in:
Matthias Krüger 2023-04-27 21:34:14 +02:00 committed by GitHub
commit 57e9a4be48
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 19 additions and 83 deletions

View file

@ -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>>,