]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/item-error.stderr
Rollup merge of #106648 - Nilstrieb:poly-cleanup, r=compiler-errors
[rust.git] / tests / ui / proc-macro / item-error.stderr
1 error[E0106]: missing lifetime specifier
2   --> $DIR/item-error.rs:10:8
3    |
4 LL |     a: &u64
5    |        ^ expected named lifetime parameter
6    |
7 help: consider introducing a named lifetime parameter
8    |
9 LL ~ struct A<'a> {
10 LL ~     a: &'a u64
11    |
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0106`.