This website requires JavaScript.
Explore
Help
Register
Sign In
mikros
/
rust
Watch
1
Star
0
Fork
0
You've already forked rust
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
e55aa6e5ef
rust
/
src
/
test
/
run-pass
/
morestack1.rs
9 lines
101 B
Rust
Raw
Normal View
History
Unescape
Escape
rt: Make __morestack (without unwinding) work on 32-bit linux
2011-11-21 20:52:12 -06:00
fn
getbig
(
i
:
int
)
{
if
i
!
=
0
{
getbig
(
i
-
1
)
;
}
}
fn
main
(
)
{
test: Enable all morestack tests
2011-12-17 19:08:46 -06:00
getbig
(
100000
)
;
rt: Make __morestack (without unwinding) work on 32-bit linux
2011-11-21 20:52:12 -06:00
}
Reference in New Issue
Copy Permalink