]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-69130.stderr
Rollup merge of #100861 - RalfJung:const-ice, r=oli-obk
[rust.git] / src / test / ui / issues / issue-69130.stderr
1 error: unknown start of token: \u{a7}
2   --> $DIR/issue-69130.rs:4:4
3    |
4 LL | M (§& u8)}
5    |    ^
6
7 error[E0106]: missing lifetime specifier
8   --> $DIR/issue-69130.rs:4:5
9    |
10 LL | M (§& u8)}
11    |     ^ expected named lifetime parameter
12    |
13 help: consider introducing a named lifetime parameter
14    |
15 LL ~ enum F<'a> {
16 LL ~ M (§&'a  u8)}
17    |
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0106`.