blob: 9af26cb2e2bf926ed7eac435d7865c153691f606 (
plain)
1
2
3
4
5
6
7
|
pub trait Foo { fn f(&self) -> isize; }
pub trait Bar { fn g(&self) -> isize; }
pub trait Baz { fn h(&self) -> isize; }
pub trait Quux: Foo + Bar + Baz { }
impl<T:Foo + Bar + Baz> Quux for T { }
|