mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-23 18:27:20 +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() {}
|