summary refs log tree commit diff
path: root/src/test/ui/const-eval/promoted_const_fn_fail.stderr
blob: d805e1a27c9938811c43fc73f14c1d70afae2584 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error: this expression will panic at runtime
  --> $DIR/promoted_const_fn_fail.rs:25:9
   |
LL |         Bar { a: &42 }.b as u8
   |         ^^^^^^^^^^^^^^^^^^^^^^ a raw memory access tried to access part of a pointer value as raw bytes
   |
note: lint level defined here
  --> $DIR/promoted_const_fn_fail.rs:13:9
   |
LL | #![deny(const_err)]
   |         ^^^^^^^^^

error: this expression will panic at runtime
  --> $DIR/promoted_const_fn_fail.rs:25:9
   |
LL |         Bar { a: &42 }.b as u8
   |         ^^^^^^^^^^^^^^^^^^^^^^ a raw memory access tried to access part of a pointer value as raw bytes

error: aborting due to 2 previous errors