summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/new-solver/overflow/recursion-limit-zero-issue-115351.rs
blob: 539c9614e82884a930f6a70862e3d91c6a2338f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//~ ERROR overflow evaluating the requirement `Self well-formed`
//~| ERROR overflow evaluating the requirement `Self: Trait`

// This is a non-regression test for issue #115351, where a recursion limit of 0 caused an ICE.
// compile-flags: -Ztrait-solver=next --crate-type=lib
// check-fail

#![recursion_limit = "0"]
trait Trait {}
impl Trait for u32 {}
//~^ ERROR overflow evaluating the requirement `u32: Trait`
//~| ERROR overflow evaluating the requirement `u32 well-formed`