Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
run-fail
/
too-much-recursion.rs
blob: 36dd47c373b2e3215f2514686c66ca89cd1052c9 [
file
] [
log
] [
blame
]
// error-pattern:ran out of stack
// Test that the task fails after hiting the recursion limit
fn
main
()
{
log
(
debug
,
~
"don't optimize me out"
);
main
();
}