diff options
| author | Marijn Haverbeke <marijnh@gmail.com> | 2012-02-03 09:34:42 +0100 |
|---|---|---|
| committer | Marijn Haverbeke <marijnh@gmail.com> | 2012-02-03 11:34:12 +0100 |
| commit | c1b075d042cabb90f804f3d73e6a4f4b512aa697 (patch) | |
| tree | ac1501fb72bff6b04597c054c138ae2fc8ce24dc /src/test/run-fail | |
| parent | 1ea184285eec782f90ecf4e77c854edfb0269e1b (diff) | |
| download | rust-c1b075d042cabb90f804f3d73e6a4f4b512aa697.tar.gz rust-c1b075d042cabb90f804f3d73e6a4f4b512aa697.zip | |
Remove experimental GC code
It's been sitting unused long enough to have bitrotted completely.
Diffstat (limited to 'src/test/run-fail')
| -rw-r--r-- | src/test/run-fail/morestack2.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/run-fail/morestack2.rs b/src/test/run-fail/morestack2.rs index 21686b4f3d6..15123a0540d 100644 --- a/src/test/run-fail/morestack2.rs +++ b/src/test/run-fail/morestack2.rs @@ -8,14 +8,14 @@ use std; native mod rustrt { - fn do_gc(); + fn last_os_error() -> str; } fn getbig_call_c_and_fail(i: int) { if i != 0 { getbig_call_c_and_fail(i - 1); } else { - rustrt::do_gc(); + rustrt::last_os_error(); fail; } } |
