]> git.proxmox.com Git - rustc.git/blame - src/test/ui/const-generics/min_const_generics/static-reference-array-const-param.stderr
New upstream version 1.51.0+dfsg1
[rustc.git] / src / test / ui / const-generics / min_const_generics / static-reference-array-const-param.stderr
CommitLineData
29967ef6 1error: `&'static [u32]` is forbidden as the type of a const generic parameter
5869c6ff 2 --> $DIR/static-reference-array-const-param.rs:1:15
29967ef6
XL
3 |
4LL | fn a<const X: &'static [u32]>() {}
5 | ^^^^^^^^^^^^^^
6 |
7 = note: the only supported types are integers, `bool` and `char`
5869c6ff 8 = help: more complex types are supported with `#![feature(const_generics)]`
29967ef6
XL
9
10error: aborting due to previous error
11