]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/traits-issue-26339.rs
rustc: compute the vtable base of a supertrait during selection. Fixes #26339.
[rust.git] / src / test / run-pass / traits-issue-26339.rs
1 // Copyright 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 //
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 // Test that the right implementation is called through a trait
12 // object when supertraits include multiple references to the
13 // same trait, with different type parameters.
14
15 trait A: PartialEq<Foo> + PartialEq<Bar> { }
16
17 struct Foo;
18 struct Bar;
19
20 struct Aimpl;
21
22 impl PartialEq<Foo> for Aimpl {
23     fn eq(&self, _rhs: &Foo) -> bool {
24         true
25     }
26 }
27
28 impl PartialEq<Bar> for Aimpl {
29     fn eq(&self, _rhs: &Bar) -> bool {
30         false
31     }
32 }
33
34 impl A for Aimpl { }
35
36 fn main() {
37     let a = &Aimpl as &A;
38
39     assert!(*a == Foo);
40 }