]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-22434.rs
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / issues / issue-22434.rs
CommitLineData
3157f602
XL
1pub trait Foo {
2 type A;
3}
4
dc9dc135 5type I<'a> = &'a (dyn Foo + 'a);
dfeec247 6//~^ ERROR the value of the associated type `A` (from trait `Foo`) must be specified
223e47cc
LB
7
8fn main() {}