]> git.lizzy.rs Git - rust.git/blob - tests/ui/const-generics/raw-ptr-const-param-deref.full.stderr
Merge commit '1480cea393d0cee195e59949eabdfbcf1230f7f9' into clippyup
[rust.git] / tests / ui / const-generics / raw-ptr-const-param-deref.full.stderr
1 error[E0741]: using raw pointers as const generic parameters is forbidden
2   --> $DIR/raw-ptr-const-param-deref.rs:9:23
3    |
4 LL | struct Const<const P: *const u32>;
5    |                       ^^^^^^^^^^
6
7 error[E0741]: using raw pointers as const generic parameters is forbidden
8   --> $DIR/raw-ptr-const-param-deref.rs:11:15
9    |
10 LL | impl<const P: *const u32> Const<P> {
11    |               ^^^^^^^^^^
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0741`.