causing check builds to pass affected tests - we never try to normalize unused inherent associated types - tests/ui/associated-inherent-types/normalization-overflow.rs - we never try to normalize lazy type aliases - tests/ui/infinite/infinite-type-alias-mutual-recursion.rs ```rust struct T; impl T { type This = Self::This; //~ ERROR overflow evaluating associated type `T::This` } fn main() {} ```