rust/src/test/ui/recursion_limit/overflow.rs

8 lines
219 B
Rust
Raw Normal View History

2019-12-12 21:18:21 -07:00
// Test the parse error for an overflowing recursion_limit
#![recursion_limit = "999999999999999999999999"]
//~^ ERROR `recursion_limit` must be a non-negative integer
//~| `recursion_limit` is too large
fn main() {}