about summary refs log tree commit diff
path: root/tests/ui/const-generics/raw-ptr-const-param.adt_const_params.stderr
blob: f040d3cc36a7a5dfcfffb6db36d334cc946ee45f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error[E0741]: using raw pointers as const generic parameters is forbidden
  --> $DIR/raw-ptr-const-param.rs:8:23
   |
LL | struct Const<const P: *const u32>;
   |                       ^^^^^^^^^^

error[E0308]: mismatched types
  --> $DIR/raw-ptr-const-param.rs:11:40
   |
LL |     let _: Const<{ 15 as *const _ }> = Const::<{ 10 as *const _ }>;
   |            -------------------------   ^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `{0xf as *const u32}`, found `{0xa as *const u32}`
   |            |
   |            expected due to this
   |
   = note: expected struct `Const<{0xf as *const u32}>`
              found struct `Const<{0xa as *const u32}>`

error: aborting due to 2 previous errors

Some errors have detailed explanations: E0308, E0741.
For more information about an error, try `rustc --explain E0308`.