Sign in
fuchsia
/
third_party
/
rust
/
0.4
/
.
/
src
/
test
/
run-pass
/
morestack1.rs
blob: 9c985ca84935da45b22ffdca5618359f803a138c [
file
] [
log
] [
blame
]
fn
getbig
(
i
:
int
)
{
if
i
!=
0
{
getbig
(
i
-
1
);
}
}
fn
main
()
{
getbig
(
100000
);
}