summaryrefslogtreecommitdiffstats
path: root/tests/ui/recursion_limit/overflow.stderr
blob: 6057177deb2f914468a624d266159f9d257b9f2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: `limit` must be a non-negative integer
  --> $DIR/overflow.rs:3:1
   |
LL | #![recursion_limit = "999999999999999999999999"]
   | ^^^^^^^^^^^^^^^^^^^^^--------------------------^
   |                      |
   |                      `limit` is too large

error: `limit` must be a non-negative integer
  --> $DIR/overflow.rs:3:1
   |
LL | #![recursion_limit = "999999999999999999999999"]
   | ^^^^^^^^^^^^^^^^^^^^^--------------------------^
   |                      |
   |                      `limit` is too large
   |
   = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`

error: aborting due to 2 previous errors