summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/min_const_generics/complex-types.stderr
blob: 4ddbadb54661b22031bdc536036699f49448bc28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
error: `[u8; 0]` is forbidden as the type of a const generic parameter
  --> $DIR/complex-types.rs:3:21
   |
LL | struct Foo<const N: [u8; 0]>;
   |                     ^^^^^^^
   |
   = note: the only supported types are integers, `bool` and `char`
   = help: more complex types are supported with `#![feature(adt_const_params)]`

error: `()` is forbidden as the type of a const generic parameter
  --> $DIR/complex-types.rs:6:21
   |
LL | struct Bar<const N: ()>;
   |                     ^^
   |
   = note: the only supported types are integers, `bool` and `char`
   = help: more complex types are supported with `#![feature(adt_const_params)]`

error: `No` is forbidden as the type of a const generic parameter
  --> $DIR/complex-types.rs:11:21
   |
LL | struct Fez<const N: No>;
   |                     ^^
   |
   = note: the only supported types are integers, `bool` and `char`
   = help: more complex types are supported with `#![feature(adt_const_params)]`

error: `&'static u8` is forbidden as the type of a const generic parameter
  --> $DIR/complex-types.rs:14:21
   |
LL | struct Faz<const N: &'static u8>;
   |                     ^^^^^^^^^^^
   |
   = note: the only supported types are integers, `bool` and `char`
   = help: more complex types are supported with `#![feature(adt_const_params)]`

error: `!` is forbidden as the type of a const generic parameter
  --> $DIR/complex-types.rs:17:21
   |
LL | struct Fiz<const N: !>;
   |                     ^
   |
   = note: the only supported types are integers, `bool` and `char`
   = help: more complex types are supported with `#![feature(adt_const_params)]`

error: `()` is forbidden as the type of a const generic parameter
  --> $DIR/complex-types.rs:20:19
   |
LL | enum Goo<const N: ()> { A, B }
   |                   ^^
   |
   = note: the only supported types are integers, `bool` and `char`
   = help: more complex types are supported with `#![feature(adt_const_params)]`

error: `()` is forbidden as the type of a const generic parameter
  --> $DIR/complex-types.rs:23:20
   |
LL | union Boo<const N: ()> { a: () }
   |                    ^^
   |
   = note: the only supported types are integers, `bool` and `char`
   = help: more complex types are supported with `#![feature(adt_const_params)]`

error: aborting due to 7 previous errors