]> git.proxmox.com Git - rustc.git/blob - tests/ui/issues/issue-22434.rs
New upstream version 1.75.0+dfsg1
[rustc.git] / tests / ui / issues / issue-22434.rs
1 pub trait Foo {
2 type A;
3 }
4
5 type I<'a> = &'a (dyn Foo + 'a);
6 //~^ ERROR the value of the associated type `A` in `Foo` must be specified
7
8 fn main() {}