]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/slice-const-param.min.stderr
Rollup merge of #75471 - richkadel:llvm-program-name, r=wesleywiser
[rust.git] / src / test / ui / const-generics / slice-const-param.min.stderr
1 error: using `&'static str` as const generic parameters is forbidden
2   --> $DIR/slice-const-param.rs:8:40
3    |
4 LL | pub fn function_with_str<const STRING: &'static str>() -> &'static str {
5    |                                        ^^^^^^^^^^^^
6    |
7    = note: the only supported types are integers, `bool` and `char`
8    = note: more complex types are supported with `#[feature(const_generics)]`
9
10 error: using `&'static [u8]` as const generic parameters is forbidden
11   --> $DIR/slice-const-param.rs:13:41
12    |
13 LL | pub fn function_with_bytes<const BYTES: &'static [u8]>() -> &'static [u8] {
14    |                                         ^^^^^^^^^^^^^
15    |
16    = note: the only supported types are integers, `bool` and `char`
17    = note: more complex types are supported with `#[feature(const_generics)]`
18
19 error: aborting due to 2 previous errors
20