2020-08-26 18:22:55 +08:00
|
|
|
error: `IceEnum` is forbidden as the type of a const generic parameter
|
2023-05-17 04:05:46 +00:00
|
|
|
--> $DIR/issue-74255.rs:18:31
|
2020-08-26 18:22:55 +08:00
|
|
|
|
|
|
|
|
LL | fn ice_struct_fn<const I: IceEnum>() {}
|
|
|
|
| ^^^^^^^
|
|
|
|
|
|
|
|
|
= note: the only supported types are integers, `bool` and `char`
|
2021-08-30 10:59:53 +02:00
|
|
|
= help: more complex types are supported with `#![feature(adt_const_params)]`
|
2020-08-26 18:22:55 +08:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|