1
1
error: `[u8; 0]` is forbidden as the type of a const generic parameter
2
- --> $DIR/complex-types.rs:3 :21
2
+ --> $DIR/complex-types.rs:4 :21
3
3
|
4
4
LL | struct Foo<const N: [u8; 0]>;
5
5
| ^^^^^^^
@@ -8,7 +8,7 @@ LL | struct Foo<const N: [u8; 0]>;
8
8
= note: more complex types are supported with `#[feature(const_generics)]`
9
9
10
10
error: `()` is forbidden as the type of a const generic parameter
11
- --> $DIR/complex-types.rs:6 :21
11
+ --> $DIR/complex-types.rs:7 :21
12
12
|
13
13
LL | struct Bar<const N: ()>;
14
14
| ^^
@@ -17,7 +17,7 @@ LL | struct Bar<const N: ()>;
17
17
= note: more complex types are supported with `#[feature(const_generics)]`
18
18
19
19
error: `No` is forbidden as the type of a const generic parameter
20
- --> $DIR/complex-types.rs:11 :21
20
+ --> $DIR/complex-types.rs:12 :21
21
21
|
22
22
LL | struct Fez<const N: No>;
23
23
| ^^
@@ -26,13 +26,40 @@ LL | struct Fez<const N: No>;
26
26
= note: more complex types are supported with `#[feature(const_generics)]`
27
27
28
28
error: `&'static u8` is forbidden as the type of a const generic parameter
29
- --> $DIR/complex-types.rs:14 :21
29
+ --> $DIR/complex-types.rs:15 :21
30
30
|
31
31
LL | struct Faz<const N: &'static u8>;
32
32
| ^^^^^^^^^^^
33
33
|
34
34
= note: the only supported types are integers, `bool` and `char`
35
35
= note: more complex types are supported with `#[feature(const_generics)]`
36
36
37
- error: aborting due to 4 previous errors
37
+ error: `!` is forbidden as the type of a const generic parameter
38
+ --> $DIR/complex-types.rs:18:21
39
+ |
40
+ LL | struct Fiz<const N: !>;
41
+ | ^
42
+ |
43
+ = note: the only supported types are integers, `bool` and `char`
44
+ = note: more complex types are supported with `#[feature(const_generics)]`
45
+
46
+ error: `()` is forbidden as the type of a const generic parameter
47
+ --> $DIR/complex-types.rs:21:19
48
+ |
49
+ LL | enum Goo<const N: ()> { A, B }
50
+ | ^^
51
+ |
52
+ = note: the only supported types are integers, `bool` and `char`
53
+ = note: more complex types are supported with `#[feature(const_generics)]`
54
+
55
+ error: `()` is forbidden as the type of a const generic parameter
56
+ --> $DIR/complex-types.rs:24:20
57
+ |
58
+ LL | union Boo<const N: ()> { a: () }
59
+ | ^^
60
+ |
61
+ = note: the only supported types are integers, `bool` and `char`
62
+ = note: more complex types are supported with `#[feature(const_generics)]`
63
+
64
+ error: aborting due to 7 previous errors
38
65
0 commit comments