mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 02:40:40 +00:00
7 lines
187 B
Rust
7 lines
187 B
Rust
// Test the parse error for an invalid digit in recursion_limit
|
|
|
|
#![recursion_limit = "-100"]
|
|
//~^ ERROR `limit` must be a non-negative integer
|
|
//~| NOTE not a valid integer
|
|
fn main() {}
|