summary refs log tree commit diff
path: root/src/test/run-fail/too-much-recursion.rs
blob: db244bd0435f398b5f78ccdec44d900e644fa6a6 (plain)
1
2
3
4
5
6
7
// error-pattern:ran out of stack

// Test that the task fails after hiting the recursion limit

fn main() {
    main();
}