Skip to content

Commit a6aeba8

Browse files
committed
update tests
1 parent 9613f48 commit a6aeba8

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

tests/ui/traits/next-solver/cycles/coinduction/fixpoint-exponential-growth.stderr

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ error[E0275]: overflow evaluating the requirement `W<_>: Trait`
44
LL | impls::<W<_>>();
55
| ^^^^
66
|
7+
= help: consider increasing the recursion limit by adding a `#![recursion_limit = "256"]` attribute to your crate (`fixpoint_exponential_growth`)
78
note: required by a bound in `impls`
89
--> $DIR/fixpoint-exponential-growth.rs:30:13
910
|

tests/ui/traits/next-solver/overflow/recursion-limit-zero-issue-115351.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
//~ ERROR overflow evaluating the requirement `Self: Trait`
2+
//~^ ERROR overflow evaluating the requirement `Self well-formed`
13
// This is a non-regression test for issue #115351, where a recursion limit of 0 caused an ICE.
24
//@ compile-flags: -Znext-solver --crate-type=lib
3-
//@ check-pass
45

56
#![recursion_limit = "0"]
67
trait Trait {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
error[E0275]: overflow evaluating the requirement `Self: Trait`
2+
|
3+
= help: consider increasing the recursion limit by adding a `#![recursion_limit = "2"]` attribute to your crate (`recursion_limit_zero_issue_115351`)
4+
5+
error[E0275]: overflow evaluating the requirement `Self well-formed`
6+
|
7+
= help: consider increasing the recursion limit by adding a `#![recursion_limit = "2"]` attribute to your crate (`recursion_limit_zero_issue_115351`)
8+
9+
error: aborting due to 2 previous errors
10+
11+
For more information about this error, try `rustc --explain E0275`.

0 commit comments

Comments
 (0)