1error: `&'static [u32]` is forbidden as the type of a const generic parameter
2  --> $DIR/static-reference-array-const-param.rs:1:15
3   |
4LL | fn a<const X: &'static [u32]>() {}
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
10error: aborting due to previous error
11
12