]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/const-param-elided-lifetime.stderr
Forbid elided lifetimes within const generic parameter types.
[rust.git] / src / test / ui / const-generics / const-param-elided-lifetime.stderr
1 error[E0637]: `&` without an explicit lifetime name cannot be used here
2   --> $DIR/const-param-elided-lifetime.rs:4: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:8: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:9: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:13: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:16:17
27    |
28 LL | fn bar<const N: &u8>() {}
29    |                 ^ explicit lifetime name needed here
30
31 warning: the feature `const_generics` is incomplete and may cause the compiler to crash
32   --> $DIR/const-param-elided-lifetime.rs:1:12
33    |
34 LL | #![feature(const_generics)]
35    |            ^^^^^^^^^^^^^^
36    |
37    = note: `#[warn(incomplete_features)]` on by default
38
39 error: aborting due to 5 previous errors
40