]> git.lizzy.rs Git - rust.git/blob - tests/ui/const-generics/slice-const-param-mismatch.min.stderr
Auto merge of #106908 - cjgillot:copyprop-ssa, r=oli-obk
[rust.git] / tests / ui / const-generics / slice-const-param-mismatch.min.stderr
1 error: `&'static str` is forbidden as the type of a const generic parameter
2   --> $DIR/slice-const-param-mismatch.rs:7:29
3    |
4 LL | struct ConstString<const T: &'static str>;
5    |                             ^^^^^^^^^^^^
6    |
7    = note: the only supported types are integers, `bool` and `char`
8    = help: more complex types are supported with `#![feature(adt_const_params)]`
9
10 error: `&'static [u8]` is forbidden as the type of a const generic parameter
11   --> $DIR/slice-const-param-mismatch.rs:9:28
12    |
13 LL | struct ConstBytes<const T: &'static [u8]>;
14    |                            ^^^^^^^^^^^^^
15    |
16    = note: the only supported types are integers, `bool` and `char`
17    = help: more complex types are supported with `#![feature(adt_const_params)]`
18
19 error: aborting due to 2 previous errors
20