2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-08-20 15:36:15 -05:00
|
|
|
trait TraitA {
|
2013-03-12 21:32:14 -05:00
|
|
|
fn method_a(&self) -> int;
|
2012-08-20 15:36:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
trait TraitB {
|
2013-03-12 21:32:14 -05:00
|
|
|
fn gimme_an_a<A:TraitA>(&self, a: A) -> int;
|
2012-08-20 15:36:15 -05:00
|
|
|
}
|
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl TraitB for int {
|
2013-03-12 21:32:14 -05:00
|
|
|
fn gimme_an_a<A:TraitA>(&self, a: A) -> int {
|
2013-03-13 19:57:30 -05:00
|
|
|
a.method_a() + *self
|
2012-08-20 15:36:15 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-20 19:07:17 -06:00
|
|
|
fn call_it<B:TraitB>(b: B) -> int {
|
2012-08-20 15:36:15 -05:00
|
|
|
let y = 4u;
|
2013-03-12 15:00:50 -05:00
|
|
|
b.gimme_an_a(y) //~ ERROR failed to find an implementation of trait TraitA
|
2014-08-11 19:12:01 -05:00
|
|
|
//~^ ERROR failed to find an implementation of trait TraitA
|
2012-08-20 15:36:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let x = 3i;
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(call_it(x), 22);
|
2012-08-20 15:36:15 -05:00
|
|
|
}
|