rust/tests/ui/recursion_limit/zero-overflow.rs
2023-07-21 03:31:45 +02:00

7 lines
149 B
Rust

//~ ERROR queries overflow the depth limit!
//~| HELP consider increasing the recursion limit
// build-fail
#![recursion_limit = "0"]
fn main() {}