mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-30 14:52:56 +03: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() {}
|