1
Fork 0

Rollup merge of #36423 - GuillaumeGomez:eq_impl, r=pnkfelix

Add missing Eq implementations

Part of #36301.
This commit is contained in:
Jonathan Turner 2016-09-22 11:25:01 -07:00 committed by GitHub
commit b60fc5d16a
10 changed files with 16 additions and 16 deletions

View file

@ -101,7 +101,7 @@ impl FromStr for bool {
}
/// An error returned when parsing a `bool` from a string fails.
#[derive(Debug, Clone, PartialEq)]
#[derive(Debug, Clone, PartialEq, Eq)]
#[stable(feature = "rust1", since = "1.0.0")]
pub struct ParseBoolError { _priv: () }