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