summaryrefslogtreecommitdiffstats
path: root/src/test/ui/const-generics/min_const_generics/complex-types.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/const-generics/min_const_generics/complex-types.stderr')
-rw-r--r--src/test/ui/const-generics/min_const_generics/complex-types.stderr65
1 files changed, 65 insertions, 0 deletions
diff --git a/src/test/ui/const-generics/min_const_generics/complex-types.stderr b/src/test/ui/const-generics/min_const_generics/complex-types.stderr
new file mode 100644
index 000000000..4ddbadb54
--- /dev/null
+++ b/src/test/ui/const-generics/min_const_generics/complex-types.stderr
@@ -0,0 +1,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
+