//~ ERROR overflow evaluating the requirement `Self: Trait` //~^ ERROR overflow evaluating the requirement `Self well-formed` // This is a non-regression test for issue #115351, where a recursion limit of 0 caused an ICE. //@ compile-flags: -Znext-solver --crate-type=lib #![recursion_limit = "0"] trait Trait {} impl Trait for u32 {}