diff --git a/src/libcore/ops.rs b/src/libcore/ops.rs index 50c4dc697c206..5e1210b2ff9bd 100644 --- a/src/libcore/ops.rs +++ b/src/libcore/ops.rs @@ -1475,7 +1475,7 @@ pub trait IndexMut: Index { /// assert_eq!(arr[1..3], [ 1,2 ]); /// } /// ``` -#[derive(Copy, Clone, PartialEq, Eq)] +#[derive(Copy, Clone, PartialEq, Eq, Hash)] #[stable(feature = "rust1", since = "1.0.0")] pub struct RangeFull; @@ -1506,7 +1506,7 @@ impl fmt::Debug for RangeFull { /// assert_eq!(arr[1..3], [ 1,2 ]); // Range /// } /// ``` -#[derive(Clone, PartialEq, Eq)] +#[derive(Clone, PartialEq, Eq, Hash)] // not Copy -- see #27186 #[stable(feature = "rust1", since = "1.0.0")] pub struct Range { /// The lower bound of the range (inclusive). @@ -1570,7 +1570,7 @@ impl> Range { /// assert_eq!(arr[1..3], [ 1,2 ]); /// } /// ``` -#[derive(Clone, PartialEq, Eq)] +#[derive(Clone, PartialEq, Eq, Hash)] // not Copy -- see #27186 #[stable(feature = "rust1", since = "1.0.0")] pub struct RangeFrom { /// The lower bound of the range (inclusive). @@ -1619,7 +1619,7 @@ impl> RangeFrom { /// assert_eq!(arr[1..3], [ 1,2 ]); /// } /// ``` -#[derive(Copy, Clone, PartialEq, Eq)] +#[derive(Copy, Clone, PartialEq, Eq, Hash)] #[stable(feature = "rust1", since = "1.0.0")] pub struct RangeTo { /// The upper bound of the range (exclusive). @@ -1669,7 +1669,7 @@ impl> RangeTo { /// assert_eq!(arr[1...2], [ 1,2 ]); // RangeInclusive /// } /// ``` -#[derive(Copy, Clone, PartialEq, Eq)] +#[derive(Clone, PartialEq, Eq, Hash)] // not Copy -- see #27186 #[unstable(feature = "inclusive_range", reason = "recently added, follows RFC", issue = "28237")] pub enum RangeInclusive { /// Empty range (iteration has finished) @@ -1774,7 +1774,7 @@ impl> RangeInclusive { /// assert_eq!(arr[1...2], [ 1,2 ]); /// } /// ``` -#[derive(Copy, Clone, PartialEq, Eq)] +#[derive(Copy, Clone, PartialEq, Eq, Hash)] #[unstable(feature = "inclusive_range", reason = "recently added, follows RFC", issue = "28237")] pub struct RangeToInclusive { /// The upper bound of the range (inclusive) diff --git a/src/test/compile-fail/range_traits-1.rs b/src/test/compile-fail/range_traits-1.rs new file mode 100644 index 0000000000000..852197177585f --- /dev/null +++ b/src/test/compile-fail/range_traits-1.rs @@ -0,0 +1,93 @@ +// Copyright 2016 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +#![feature(inclusive_range)] + +use std::ops::*; + +// FIXME #34229 duplicated errors +#[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)] +struct AllTheRanges { + a: Range, + //~^ ERROR PartialOrd + //~^^ ERROR PartialOrd + //~^^^ ERROR Ord + //~^^^^ ERROR binary operation + //~^^^^^ ERROR binary operation + //~^^^^^^ ERROR binary operation + //~^^^^^^^ ERROR binary operation + //~^^^^^^^^ ERROR binary operation + //~^^^^^^^^^ ERROR binary operation + //~^^^^^^^^^^ ERROR binary operation + //~^^^^^^^^^^^ ERROR binary operation + b: RangeTo, + //~^ ERROR PartialOrd + //~^^ ERROR PartialOrd + //~^^^ ERROR Ord + //~^^^^ ERROR binary operation + //~^^^^^ ERROR binary operation + //~^^^^^^ ERROR binary operation + //~^^^^^^^ ERROR binary operation + //~^^^^^^^^ ERROR binary operation + //~^^^^^^^^^ ERROR binary operation + //~^^^^^^^^^^ ERROR binary operation + //~^^^^^^^^^^^ ERROR binary operation + c: RangeFrom, + //~^ ERROR PartialOrd + //~^^ ERROR PartialOrd + //~^^^ ERROR Ord + //~^^^^ ERROR binary operation + //~^^^^^ ERROR binary operation + //~^^^^^^ ERROR binary operation + //~^^^^^^^ ERROR binary operation + //~^^^^^^^^ ERROR binary operation + //~^^^^^^^^^ ERROR binary operation + //~^^^^^^^^^^ ERROR binary operation + //~^^^^^^^^^^^ ERROR binary operation + d: RangeFull, + //~^ ERROR PartialOrd + //~^^ ERROR PartialOrd + //~^^^ ERROR Ord + //~^^^^ ERROR binary operation + //~^^^^^ ERROR binary operation + //~^^^^^^ ERROR binary operation + //~^^^^^^^ ERROR binary operation + //~^^^^^^^^ ERROR binary operation + //~^^^^^^^^^ ERROR binary operation + //~^^^^^^^^^^ ERROR binary operation + //~^^^^^^^^^^^ ERROR binary operation + e: RangeInclusive, + //~^ ERROR PartialOrd + //~^^ ERROR PartialOrd + //~^^^ ERROR Ord + //~^^^^ ERROR binary operation + //~^^^^^ ERROR binary operation + //~^^^^^^ ERROR binary operation + //~^^^^^^^ ERROR binary operation + //~^^^^^^^^ ERROR binary operation + //~^^^^^^^^^ ERROR binary operation + //~^^^^^^^^^^ ERROR binary operation + //~^^^^^^^^^^^ ERROR binary operation + f: RangeToInclusive, + //~^ ERROR PartialOrd + //~^^ ERROR PartialOrd + //~^^^ ERROR Ord + //~^^^^ ERROR binary operation + //~^^^^^ ERROR binary operation + //~^^^^^^ ERROR binary operation + //~^^^^^^^ ERROR binary operation + //~^^^^^^^^ ERROR binary operation + //~^^^^^^^^^ ERROR binary operation + //~^^^^^^^^^^ ERROR binary operation + //~^^^^^^^^^^^ ERROR binary operation +} + +fn main() {} + diff --git a/src/test/compile-fail/range_traits-2.rs b/src/test/compile-fail/range_traits-2.rs new file mode 100644 index 0000000000000..64fcd25f538b2 --- /dev/null +++ b/src/test/compile-fail/range_traits-2.rs @@ -0,0 +1,17 @@ +// Copyright 2016 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +use std::ops::*; + +#[derive(Copy, Clone)] //~ ERROR Copy +struct R(Range); + +fn main() {} + diff --git a/src/test/compile-fail/range_traits-3.rs b/src/test/compile-fail/range_traits-3.rs new file mode 100644 index 0000000000000..d26b7956ae83a --- /dev/null +++ b/src/test/compile-fail/range_traits-3.rs @@ -0,0 +1,17 @@ +// Copyright 2016 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +use std::ops::*; + +#[derive(Copy, Clone)] //~ ERROR Copy +struct R(RangeFrom); + +fn main() {} + diff --git a/src/test/compile-fail/range_traits-4.rs b/src/test/compile-fail/range_traits-4.rs new file mode 100644 index 0000000000000..630969bdbdf72 --- /dev/null +++ b/src/test/compile-fail/range_traits-4.rs @@ -0,0 +1,20 @@ +// Copyright 2016 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +#![feature(rustc_attrs)] + +use std::ops::*; + +#[derive(Copy, Clone)] +struct R(RangeTo); + +#[rustc_error] +fn main() {} //~ ERROR success + diff --git a/src/test/compile-fail/range_traits-5.rs b/src/test/compile-fail/range_traits-5.rs new file mode 100644 index 0000000000000..5963c4a9496cb --- /dev/null +++ b/src/test/compile-fail/range_traits-5.rs @@ -0,0 +1,20 @@ +// Copyright 2016 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +#![feature(rustc_attrs)] + +use std::ops::*; + +#[derive(Copy, Clone)] +struct R(RangeFull); + +#[rustc_error] +fn main() {} //~ ERROR success + diff --git a/src/test/compile-fail/range_traits-6.rs b/src/test/compile-fail/range_traits-6.rs new file mode 100644 index 0000000000000..7c62711feaee1 --- /dev/null +++ b/src/test/compile-fail/range_traits-6.rs @@ -0,0 +1,19 @@ +// Copyright 2016 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +#![feature(inclusive_range)] + +use std::ops::*; + +#[derive(Copy, Clone)] //~ ERROR Copy +struct R(RangeInclusive); + +fn main() {} + diff --git a/src/test/compile-fail/range_traits-7.rs b/src/test/compile-fail/range_traits-7.rs new file mode 100644 index 0000000000000..b6fec773a7773 --- /dev/null +++ b/src/test/compile-fail/range_traits-7.rs @@ -0,0 +1,20 @@ +// Copyright 2016 The Rust Project Developers. See the COPYRIGHT +// file at the top-level directory of this distribution and at +// http://rust-lang.org/COPYRIGHT. +// +// Licensed under the Apache License, Version 2.0 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +#![feature(rustc_attrs, inclusive_range)] + +use std::ops::*; + +#[derive(Copy, Clone)] +struct R(RangeToInclusive); + +#[rustc_error] +fn main() {} //~ ERROR success +