granite-rust/src/test/ui/issues/issue-28576.rs

13 lines
218 B
Rust
Raw Normal View History

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