Files
rust/tests/ui/recursion_limit/overflow.rs
2025-04-30 10:44:24 +03:00

11 lines
363 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
//~| ERROR `limit` must be a non-negative integer
//~| NOTE `limit` is too large
//~| NOTE duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
fn main() {}