]> git.lizzy.rs Git - rust.git/blob - src/test/ui/impl-header-lifetime-elision/assoc-type.stderr
Rollup merge of #53110 - Xanewok:save-analysis-remap-path, r=nrc
[rust.git] / src / test / ui / impl-header-lifetime-elision / assoc-type.stderr
1 error[E0106]: missing lifetime specifier
2   --> $DIR/assoc-type.rs:23:19
3    |
4 LL |     type Output = &i32;
5    |                   ^ expected lifetime parameter
6
7 error[E0106]: missing lifetime specifier
8   --> $DIR/assoc-type.rs:28:20
9    |
10 LL |     type Output = &'_ i32;
11    |                    ^^ expected lifetime parameter
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0106`.