We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f1ead8 commit 801585dCopy full SHA for 801585d
src/liballoc/boxed.rs
@@ -1,4 +1,4 @@
1
-// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
+// Copyright 2012-2015 The Rust Project Developers. See the COPYRIGHT
2
// file at the top-level directory of this distribution and at
3
// http://rust-lang.org/COPYRIGHT.
4
//
@@ -102,8 +102,8 @@ impl<T: ?Sized + Ord> Ord for Box<T> {
102
fn cmp(&self, other: &Box<T>) -> Ordering {
103
Ord::cmp(&**self, &**other)
104
}
105
-
106
-#[stable]}
+}
+#[stable]
107
impl<T: ?Sized + Eq> Eq for Box<T> {}
108
109
impl<S: hash::Writer, T: ?Sized + Hash<S>> Hash<S> for Box<T> {
0 commit comments