rust/src/test/run-pass/too-much-recursion.rs
2012-07-01 19:19:32 -07:00

14 lines
317 B
Rust

// xfail-win32
// error-pattern:ran out of stack
// Test that the task fails after hiting the recursion limit, but
// that it doesn't bring down the whole proc
fn main() {
let builder = task::builder();
task::unsupervise(builder);
do task::run(builder) || {
fn f() { f() };
f();
};
}