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

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() {}