about summary refs log tree commit diff
path: root/tests/ui/consts/const-cast-wrong-type.stderr
blob: 0730bac22354d92404fec4e250be5732bf695a8a (plain)
1
2
3
4
5
6
7
8
9
error[E0606]: casting `&[u8; 3]` as `*const i8` is invalid
  --> $DIR/const-cast-wrong-type.rs:2:22
   |
LL | const b: *const i8 = &a as *const i8;
   |                      ^^^^^^^^^^^^^^^

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0606`.