blob: 34057b46ecd4299844de3c20b64900824b54185c [file] [log] [blame]
pub trait Foo {
type A;
}
type I<'a> = &'a (dyn Foo + 'a);
//~^ ERROR the value of the associated type `A` (from trait `Foo`) must be specified
fn main() {}