2016-12-25 19:38:45 +02:00
|
|
|
trait A<T>: std::ops::Add<Self> + Sized {}
|
|
|
|
|
trait B<T>: A<T> {}
|
2019-05-28 14:46:13 -04:00
|
|
|
trait C<T>: A<dyn B<T, Output=usize>> {}
|
2016-12-25 19:38:45 +02:00
|
|
|
//~^ ERROR the trait `B` cannot be made into an object
|
|
|
|
|
|
|
|
|
|
fn main() {}
|