rust/tests/ui/recursion_limit/zero-overflow.rs

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

8 lines
149 B
Rust
Raw Normal View History

2023-06-19 15:29:31 +02:00
//~ ERROR queries overflow the depth limit!
//~| HELP consider increasing the recursion limit
// build-fail
#![recursion_limit = "0"]
fn main() {}