Files
rust/tests/ui/recursion_limit/empty.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
192 B
Rust
Raw Normal View History

2019-12-12 21:18:21 -07:00
// Test the parse error for an empty recursion_limit
2025-08-24 13:25:36 +02:00
#![recursion_limit = ""]
//~^ ERROR `limit` must be a non-negative integer
//~| NOTE `limit` must be a non-negative integer
2019-12-12 21:18:21 -07:00
fn main() {}