]> git.proxmox.com Git - rustc.git/blob - src/test/ui/const-generics/issues/issue-66596-impl-trait-for-str-const-arg.min.stderr
New upstream version 1.55.0+dfsg1
[rustc.git] / src / test / ui / const-generics / issues / issue-66596-impl-trait-for-str-const-arg.min.stderr
1 error: `&'static str` is forbidden as the type of a const generic parameter
2 --> $DIR/issue-66596-impl-trait-for-str-const-arg.rs:8:25
3 |
4 LL | trait Trait<const NAME: &'static str> {
5 | ^^^^^^^^^^^^
6 |
7 = note: the only supported types are integers, `bool` and `char`
8 = help: more complex types are supported with `#![feature(const_generics)]`
9
10 error: aborting due to previous error
11