blob: c3e958f498390c35d4bf7e9588bcb8e20b9336fe [file] [log] [blame]
// run-rustfix
trait TraitWithAType {
type Item;
}
trait Trait {}
struct A {}
impl TraitWithAType for A {
type Item = dyn Trait; //~ ERROR E0277
}
fn main() {}