diff --git a/src/liballoc/boxed.rs b/src/liballoc/boxed.rs index d46f18abf97..3757a0fbd37 100644 --- a/src/liballoc/boxed.rs +++ b/src/liballoc/boxed.rs @@ -1,4 +1,4 @@ -// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT +// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // @@ -102,8 +102,8 @@ impl Ord for Box { fn cmp(&self, other: &Box) -> Ordering { Ord::cmp(&**self, &**other) } - -#[stable]} +} +#[stable] impl Eq for Box {} impl> Hash for Box {