]> git.proxmox.com Git - rustc.git/blob - tests/ui/const-generics/const-param-elided-lifetime.min.stderr
New upstream version 1.69.0+dfsg1
[rustc.git] / tests / ui / const-generics / const-param-elided-lifetime.min.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: `&u8` is forbidden as the type of a const generic parameter
32 --> $DIR/const-param-elided-lifetime.rs:9:19
33 |
34 LL | struct A<const N: &u8>;
35 | ^^^
36 |
37 = note: the only supported types are integers, `bool` and `char`
38 = help: more complex types are supported with `#![feature(adt_const_params)]`
39
40 error: `&u8` is forbidden as the type of a const generic parameter
41 --> $DIR/const-param-elided-lifetime.rs:14:15
42 |
43 LL | impl<const N: &u8> A<N> {
44 | ^^^
45 |
46 = note: the only supported types are integers, `bool` and `char`
47 = help: more complex types are supported with `#![feature(adt_const_params)]`
48
49 error: `&u8` is forbidden as the type of a const generic parameter
50 --> $DIR/const-param-elided-lifetime.rs:22:15
51 |
52 LL | impl<const N: &u8> B for A<N> {}
53 | ^^^
54 |
55 = note: the only supported types are integers, `bool` and `char`
56 = help: more complex types are supported with `#![feature(adt_const_params)]`
57
58 error: `&u8` is forbidden as the type of a const generic parameter
59 --> $DIR/const-param-elided-lifetime.rs:26:17
60 |
61 LL | fn bar<const N: &u8>() {}
62 | ^^^
63 |
64 = note: the only supported types are integers, `bool` and `char`
65 = help: more complex types are supported with `#![feature(adt_const_params)]`
66
67 error: `&u8` is forbidden as the type of a const generic parameter
68 --> $DIR/const-param-elided-lifetime.rs:17:21
69 |
70 LL | fn foo<const M: &u8>(&self) {}
71 | ^^^
72 |
73 = note: the only supported types are integers, `bool` and `char`
74 = help: more complex types are supported with `#![feature(adt_const_params)]`
75
76 error: aborting due to 10 previous errors
77
78 For more information about this error, try `rustc --explain E0637`.