summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-cast-different-types.stderr
blob: 9e622de2eb004ecdff911c191ebf42ac80a3c24d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0606]: casting `&'static str` as `*const u8` is invalid
  --> $DIR/const-cast-different-types.rs:2:22
   |
LL | const b: *const u8 = a as *const u8;
   |                      ^^^^^^^^^^^^^^

error[E0606]: casting `&&'static str` as `*const u8` is invalid
  --> $DIR/const-cast-different-types.rs:3:22
   |
LL | const c: *const u8 = &a as *const u8;
   |                      ^^^^^^^^^^^^^^^

error: aborting due to 2 previous errors

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