]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/wrong-hashset-issue-42918.rs
Auto merge of #54265 - arielb1:civilize-proc-macros, r=alexcrichton
[rust.git] / src / test / run-pass / wrong-hashset-issue-42918.rs
1 // Copyright 2017 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 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10 //
11 #![allow(dead_code)]
12 // compile-flags: -O
13
14 use std::collections::HashSet;
15
16 #[derive(PartialEq, Debug, Hash, Eq, Clone, PartialOrd, Ord)]
17 enum MyEnum {
18     E0,
19
20     E1,
21
22     E2,
23     E3,
24     E4,
25
26     E5,
27     E6,
28     E7,
29 }
30
31
32 fn main() {
33     use MyEnum::*;
34     let s: HashSet<_> = [E4, E1].iter().cloned().collect();
35     let mut v: Vec<_> = s.into_iter().collect();
36     v.sort();
37
38     assert_eq!([E1, E4], &v[..]);
39 }