mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
24 lines
419 B
Rust
24 lines
419 B
Rust
trait TraitA {
|
|
fn method_a(&self) -> isize;
|
|
}
|
|
|
|
trait TraitB {
|
|
fn gimme_an_a<A:TraitA>(&self, a: A) -> isize;
|
|
}
|
|
|
|
impl TraitB for isize {
|
|
fn gimme_an_a<A:TraitA>(&self, a: A) -> isize {
|
|
a.method_a() + *self
|
|
}
|
|
}
|
|
|
|
fn call_it<B:TraitB>(b: B) -> isize {
|
|
let y = 4;
|
|
b.gimme_an_a(y) //~ ERROR `{integer}: TraitA` is not satisfied
|
|
}
|
|
|
|
fn main() {
|
|
let x = 3;
|
|
assert_eq!(call_it(x), 22);
|
|
}
|