summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/issue-38404.rs
blob: 05921b2c36e46e16e0c940ee6ff480b9129b2c89 (plain)
1
2
3
4
5
6
7
trait A<T>: std::ops::Add<Self> + Sized {}
trait B<T>: A<T> {}
trait C<T>: A<dyn B<T, Output=usize>> {}
//~^ ERROR the trait `B` cannot be made into an object
//~| ERROR the trait `B` cannot be made into an object

fn main() {}