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