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