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