]> git.proxmox.com Git - rustc.git/blame - src/test/ui/run-pass/traits/trait-inheritance-auto.rs
New upstream version 1.30.0+dfsg1
[rustc.git] / src / test / ui / run-pass / traits / trait-inheritance-auto.rs
CommitLineData
223e47cc
LB
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
b7449926 11// run-pass
223e47cc
LB
12// Testing that this impl turns A into a Quux, because
13// A is already a Foo Bar Baz
c34b1796 14
223e47cc
LB
15impl<T:Foo + Bar + Baz> Quux for T { }
16
c34b1796
AL
17trait Foo { fn f(&self) -> isize; }
18trait Bar { fn g(&self) -> isize; }
19trait Baz { fn h(&self) -> isize; }
223e47cc
LB
20
21trait Quux: Foo + Bar + Baz { }
22
c34b1796 23struct A { x: isize }
223e47cc 24
c34b1796
AL
25impl Foo for A { fn f(&self) -> isize { 10 } }
26impl Bar for A { fn g(&self) -> isize { 20 } }
27impl Baz for A { fn h(&self) -> isize { 30 } }
223e47cc
LB
28
29fn f<T:Quux>(a: &T) {
970d7e83
LB
30 assert_eq!(a.f(), 10);
31 assert_eq!(a.g(), 20);
32 assert_eq!(a.h(), 30);
223e47cc
LB
33}
34
35pub fn main() {
36 let a = &A { x: 3 };
37 f(a);
38}