2022-07-23 15:09:52 -05:00
|
|
|
error[E0741]: using raw pointers as const generic parameters is forbidden
|
2024-07-14 07:38:51 -05:00
|
|
|
--> $DIR/raw-ptr-const-param-deref.rs:11:23
|
2020-08-09 00:01:19 -05:00
|
|
|
|
|
|
|
|
LL | struct Const<const P: *const u32>;
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
2022-07-23 15:09:52 -05:00
|
|
|
error[E0741]: using raw pointers as const generic parameters is forbidden
|
2024-07-14 07:38:51 -05:00
|
|
|
--> $DIR/raw-ptr-const-param-deref.rs:13:15
|
2020-08-09 00:01:19 -05:00
|
|
|
|
|
|
|
|
LL | impl<const P: *const u32> Const<P> {
|
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2022-07-23 15:09:52 -05:00
|
|
|
For more information about this error, try `rustc --explain E0741`.
|