Remove stray attribute

This commit is contained in:
Steven Fackler 2016-09-12 15:55:02 -07:00 committed by GitHub
parent 63fecad2e7
commit 7bd25a3048

View File

@ -587,7 +587,6 @@ macro_rules! integer_sum_product {
($($a:ident)*) => ($(
#[stable(feature = "iter_arith_traits", since = "1.12.0")]
impl Sum for $a {
#[rustc_inherit_overflow_checks]
fn sum<I: Iterator<Item=$a>>(iter: I) -> $a {
iter.fold(0, Add::add)
}