]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/min_const_generics/transmute-const-param-static-reference.stderr
Add various `min_const_generics` regression tests
[rust.git] / src / test / ui / const-generics / min_const_generics / transmute-const-param-static-reference.stderr
1 error: `&'static ()` is forbidden as the type of a const generic parameter
2   --> $DIR/transmute-const-param-static-reference.rs:3:23
3    |
4 LL | struct Const<const P: &'static ()>;
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: aborting due to previous error
11