]> git.proxmox.com Git - rustc.git/blob - src/test/compile-fail/issue-3953.rs
Imported Upstream version 0.7
[rustc.git] / src / test / compile-fail / issue-3953.rs
1 // Copyright 2012 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 use std::cmp::Eq;
12
13 trait Hahaha: Eq + Eq + Eq + Eq + Eq + //~ ERROR Duplicate supertrait
14 Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq +
15 Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq +
16 Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq +
17 Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq +
18 Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq +
19 Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq +
20 Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq + Eq +
21 Eq {}
22
23 struct Lol(int);
24
25 impl Hahaha for Lol { }
26
27 impl Eq for Lol {
28 fn eq(&self, other: &Lol) -> bool { **self != **other }
29 fn ne(&self, other: &Lol) -> bool { **self == **other }
30 }
31
32 fn main() {
33 if Lol(2) == Lol(4) {
34 println("2 == 4");
35 } else {
36 println("2 != 4");
37 }
38 }