7 lines
122 B
Rust
7 lines
122 B
Rust
|
// error-pattern:ran out of stack
|
||
|
|
||
|
// Test that the task fails after hiting the recursion limit
|
||
|
|
||
|
fn main() {
|
||
|
main();
|
||
|
}
|