mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 18:57:19 +00:00
8 lines
204 B
Rust
8 lines
204 B
Rust
// Test the parse error for an overflowing recursion_limit
|
|
|
|
#![recursion_limit = "999999999999999999999999"]
|
|
//~^ ERROR `limit` must be a non-negative integer
|
|
//~| NOTE `limit` is too large
|
|
|
|
fn main() {}
|