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 {
|
2015-01-08 04:54:35 -06:00
|
|
|
fn method_a(&self) -> isize;
|
2012-08-20 15:36:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
trait TraitB {
|
2015-01-08 04:54:35 -06:00
|
|
|
fn gimme_an_a<A:TraitA>(&self, a: A) -> isize;
|
2012-08-20 15:36:15 -05:00
|
|
|
}
|
|
|
|
|
2015-01-08 04:54:35 -06:00
|
|
|
impl TraitB for isize {
|
|
|
|
fn gimme_an_a<A:TraitA>(&self, a: A) -> isize {
|
2013-03-13 19:57:30 -05:00
|
|
|
a.method_a() + *self
|
2012-08-20 15:36:15 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-08 04:54:35 -06:00
|
|
|
fn call_it<B:TraitB>(b: B) -> isize {
|
2015-01-08 05:05:56 -06:00
|
|
|
let y = 4us;
|
2014-09-12 09:45:39 -05:00
|
|
|
b.gimme_an_a(y) //~ ERROR the trait `TraitA` is not implemented
|
2012-08-20 15:36:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2015-01-31 10:23:42 -06:00
|
|
|
let x = 3;
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(call_it(x), 22);
|
2012-08-20 15:36:15 -05:00
|
|
|
}
|