1error[E0106]: missing lifetime specifier
2  --> $DIR/assoc-type.rs:11:19
3   |
4LL |     type Output = &i32;
5   |                   ^ expected named lifetime parameter
6   |
7help: consider introducing a named lifetime parameter
8   |
9LL |     type Output<'a> = &'a i32;
10   |                ++++    ++
11
12error[E0106]: missing lifetime specifier
13  --> $DIR/assoc-type.rs:16:20
14   |
15LL |     type Output = &'_ i32;
16   |                    ^^ expected named lifetime parameter
17   |
18help: consider introducing a named lifetime parameter
19   |
20LL |     type Output<'a> = &'a i32;
21   |                ++++    ~~
22
23error: aborting due to 2 previous errors
24
25For more information about this error, try `rustc --explain E0106`.
26