2019-07-29 02:01:57 +02:00
|
|
|
error[E0573]: expected type, found const parameter `C`
|
2021-08-27 18:04:57 +02:00
|
|
|
--> $DIR/struct-with-invalid-const-param.rs:3:23
|
2019-07-29 02:01:57 +02:00
|
|
|
|
|
|
|
|
LL | struct S<const C: u8>(C);
|
2020-08-09 21:02:58 -07:00
|
|
|
| ^ not a type
|
2019-07-29 02:01:57 +02:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2019-03-22 01:49:42 +00:00
|
|
|
|
2019-10-09 14:19:48 +02:00
|
|
|
For more information about this error, try `rustc --explain E0573`.
|