diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-07-31 08:13:25 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-07-31 13:05:12 -0700 |
| commit | ec79d368d2f9b56ac1d00825108b4e8b8bd26498 (patch) | |
| tree | 4d2e1575805cb3a7b5f4481202b13c956a5c05f7 /src/test/auxiliary | |
| parent | f86184869a95199a2e0da844ad257c67f1aac97a (diff) | |
| download | rust-ec79d368d2f9b56ac1d00825108b4e8b8bd26498.tar.gz rust-ec79d368d2f9b56ac1d00825108b4e8b8bd26498.zip | |
Test fixes from the rollup
Closes #16097 (fix variable name in tutorial) Closes #16100 (More defailbloating) Closes #16104 (Fix deprecation commment on `core::cmp::lexical_ordering`) Closes #16105 (fix formatting in pointer guide table) Closes #16107 (remove serialize::ebml, add librbml) Closes #16108 (Fix heading levels in pointer guide) Closes #16109 (rustrt: Don't conditionally init the at_exit QUEUE) Closes #16111 (hexfloat: Deprecate to move out of the repo) Closes #16113 (Add examples for GenericPath methods.) Closes #16115 (Byte literals!) Closes #16116 (Add a non-regression test for issue #8372) Closes #16120 (Deprecate semver) Closes #16124 (Deprecate uuid) Closes #16126 (Deprecate fourcc) Closes #16127 (Remove incorrect example) Closes #16129 (Add note about production deployments.) Closes #16131 (librustc: Don't ICE when trying to subst regions in destructor call.) Closes #16133 (librustc: Don't ICE with struct exprs where the name is not a valid struct.) Closes #16136 (Implement slice::Vector for Option<T> and CVec<T>) Closes #16137 (alloc, arena, test, url, uuid: Elide lifetimes.)
Diffstat (limited to 'src/test/auxiliary')
| -rw-r--r-- | src/test/auxiliary/lang-item-public.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/auxiliary/lang-item-public.rs b/src/test/auxiliary/lang-item-public.rs index 7b84e11ef31..5723b59a60b 100644 --- a/src/test/auxiliary/lang-item-public.rs +++ b/src/test/auxiliary/lang-item-public.rs @@ -12,7 +12,7 @@ #![feature(lang_items)] #[lang="fail_"] -fn fail(_: &'static str, _: &'static str, _: uint) -> ! { loop {} } +fn fail(_: &(&'static str, &'static str, uint)) -> ! { loop {} } #[lang = "stack_exhausted"] extern fn stack_exhausted() {} |
