rust/tests/ui/traits/issue-28576.rs
2023-01-11 09:32:08 +00:00

13 lines
222 B
Rust

pub trait Foo<RHS=Self> {
type Assoc;
}
pub trait Bar: Foo<Assoc=()> {
fn new(&self, b: &
dyn Bar //~ ERROR the trait `Bar` cannot be made into an object
<Assoc=()>
);
}
fn main() {}