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

9 lines
163 B
Rust

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() {}