]> git.lizzy.rs Git - rust.git/blob - tests/ui/const-generics/const-param-elided-lifetime.full.stderr
Rollup merge of #106321 - compiler-errors:delayed-bug-backtrace, r=Nilstrieb
[rust.git] / tests / ui / const-generics / const-param-elided-lifetime.full.stderr
1 error[E0637]: `&` without an explicit lifetime name cannot be used here
2   --> $DIR/const-param-elided-lifetime.rs:9:19
3    |
4 LL | struct A<const N: &u8>;
5    |                   ^ explicit lifetime name needed here
6
7 error[E0637]: `&` without an explicit lifetime name cannot be used here
8   --> $DIR/const-param-elided-lifetime.rs:14:15
9    |
10 LL | impl<const N: &u8> A<N> {
11    |               ^ explicit lifetime name needed here
12
13 error[E0637]: `&` without an explicit lifetime name cannot be used here
14   --> $DIR/const-param-elided-lifetime.rs:17:21
15    |
16 LL |     fn foo<const M: &u8>(&self) {}
17    |                     ^ explicit lifetime name needed here
18
19 error[E0637]: `&` without an explicit lifetime name cannot be used here
20   --> $DIR/const-param-elided-lifetime.rs:22:15
21    |
22 LL | impl<const N: &u8> B for A<N> {}
23    |               ^ explicit lifetime name needed here
24
25 error[E0637]: `&` without an explicit lifetime name cannot be used here
26   --> $DIR/const-param-elided-lifetime.rs:26:17
27    |
28 LL | fn bar<const N: &u8>() {}
29    |                 ^ explicit lifetime name needed here
30
31 error: aborting due to 5 previous errors
32
33 For more information about this error, try `rustc --explain E0637`.