]> git.proxmox.com Git - rustc.git/blame - src/test/ui/consts/miri_unleashed/ptr_arith.stderr
New upstream version 1.62.1+dfsg1
[rustc.git] / src / test / ui / consts / miri_unleashed / ptr_arith.stderr
CommitLineData
f9f354fc
XL
1error[E0080]: could not evaluate static initializer
2 --> $DIR/ptr_arith.rs:9:14
3 |
4LL | let _v = x == x;
5 | ^^^^^^ "pointer arithmetic or comparison" needs an rfc before being allowed inside constants
6
7error[E0080]: could not evaluate static initializer
136023e0
XL
8 --> $DIR/ptr_arith.rs:15:13
9 |
10LL | let x = &0 as *const _ as usize;
04454e1e 11 | ^^^^^^^^^^^^^^^^^^^^^^^ "exposing pointers" needs an rfc before being allowed inside constants
136023e0
XL
12
13error[E0080]: could not evaluate static initializer
14 --> $DIR/ptr_arith.rs:23:14
f9f354fc
XL
15 |
16LL | let _v = x + 0;
136023e0 17 | ^^^^^ unable to turn pointer into raw bytes
f9f354fc
XL
18
19warning: skipping const checks
20 |
f035d41b 21help: skipping check that does not even have a feature gate
f9f354fc
XL
22 --> $DIR/ptr_arith.rs:9:14
23 |
24LL | let _v = x == x;
25 | ^^^^^^
136023e0
XL
26help: skipping check that does not even have a feature gate
27 --> $DIR/ptr_arith.rs:15:13
28 |
29LL | let x = &0 as *const _ as usize;
30 | ^^^^^^^^^^^^^^^^^^^^^^^
f9f354fc 31
136023e0 32error: aborting due to 3 previous errors; 1 warning emitted
f9f354fc
XL
33
34For more information about this error, try `rustc --explain E0080`.