mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
21 lines
578 B
Plaintext
21 lines
578 B
Plaintext
error: `limit` must be a non-negative integer
|
|
--> $DIR/invalid_digit.rs:3:1
|
|
|
|
|
LL | #![recursion_limit = "-100"]
|
|
| ^^^^^^^^^^^^^^^^^^^^^------^
|
|
| |
|
|
| not a valid integer
|
|
|
|
error: `limit` must be a non-negative integer
|
|
--> $DIR/invalid_digit.rs:3:1
|
|
|
|
|
LL | #![recursion_limit = "-100"]
|
|
| ^^^^^^^^^^^^^^^^^^^^^------^
|
|
| |
|
|
| not a valid integer
|
|
|
|
|
= note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|