From cdccecb24f5c467282b73413494343d3848b4e5a Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Tue, 24 Jun 2014 17:51:02 -0700 Subject: Test fixes from the rollup Closes #14482 (std: Bring back half of Add on String) Closes #15026 (librustc: Remove the fallback to `int` from typechecking.) Closes #15119 (Add more description to c_str::unwrap().) Closes #15120 (Add tests for #12470 and #14285) Closes #15122 (Remove the cheat sheet.) Closes #15126 (rustc: Always include the morestack library) Closes #15127 (Improve ambiguous pronoun.) Closes #15130 (Fix #15129) Closes #15131 (Add the Guide, add warning to tutorial.) Closes #15134 (Xfailed tests for hygiene, etc.) Closes #15135 (core: Add stability attributes to Clone) Closes #15136 (Some minor improvements to core::bool) Closes #15137 (std: Add stability attributes to primitive numeric modules) Closes #15141 (Fix grammar in tutorial) Closes #15143 (Remove few FIXMEs) Closes #15145 (Avoid unnecessary temporary on assignments) Closes #15147 (Small improvements for metaprogramming) Closes #15153 (librustc: Check function argument patterns for legality of by-move) Closes #15154 (test: Add a test for regions, traits, and variance.) Closes #15159 (rustc: Don't register syntax crates twice) Closes #13816 (Stabilize version output for rustc and rustdoc) --- src/libstd/num/int_macros.rs | 2 ++ src/libstd/num/uint_macros.rs | 2 ++ 2 files changed, 4 insertions(+) (limited to 'src/libstd/num') diff --git a/src/libstd/num/int_macros.rs b/src/libstd/num/int_macros.rs index 1a22ed03a45..9b3c9d29cc7 100644 --- a/src/libstd/num/int_macros.rs +++ b/src/libstd/num/int_macros.rs @@ -59,6 +59,8 @@ impl FromStrRadix for $T { /// # Examples /// /// ``` +/// #![allow(deprecated)] +/// /// std::int::to_str_bytes(123, 10, |v| { /// assert!(v == "123".as_bytes()); /// }); diff --git a/src/libstd/num/uint_macros.rs b/src/libstd/num/uint_macros.rs index 3b456caa099..19e45b292fb 100644 --- a/src/libstd/num/uint_macros.rs +++ b/src/libstd/num/uint_macros.rs @@ -60,6 +60,8 @@ impl FromStrRadix for $T { /// # Examples /// /// ``` +/// #![allow(deprecated)] +/// /// std::uint::to_str_bytes(123, 10, |v| { /// assert!(v == "123".as_bytes()); /// }); -- cgit 1.4.1-3-g733a5