mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
11 lines
223 B
Rust
11 lines
223 B
Rust
pub trait Bound {}
|
|
pub struct Foo<T: Bound>(T);
|
|
|
|
pub trait Trait1 {}
|
|
impl<T: Bound> Trait1 for Foo<T> {}
|
|
|
|
pub trait Trait2 {}
|
|
impl<T> Trait2 for Foo<T> {} //~ ERROR the trait bound `T: Bound` is not satisfied
|
|
|
|
fn main() {}
|