]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-eval/match-test-ptr-null.stderr
Rollup merge of #53110 - Xanewok:save-analysis-remap-path, r=nrc
[rust.git] / src / test / ui / const-eval / match-test-ptr-null.stderr
1 error[E0658]: casting pointers to integers in constants is unstable (see issue #51910)
2   --> $DIR/match-test-ptr-null.rs:16:15
3    |
4 LL |         match &1 as *const i32 as usize { //~ ERROR casting pointers to integers in constants
5    |               ^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = help: add #![feature(const_raw_ptr_to_usize_cast)] to the crate attributes to enable
8
9 error[E0019]: constant contains unimplemented expression type
10   --> $DIR/match-test-ptr-null.rs:17:13
11    |
12 LL |             0 => 42, //~ ERROR constant contains unimplemented expression type
13    |             ^
14
15 error[E0080]: could not evaluate repeat length
16   --> $DIR/match-test-ptr-null.rs:15:26
17    |
18 LL |       let _: [u8; 0] = [4; { //~ ERROR could not evaluate repeat length
19    |  __________________________^
20 LL | |         match &1 as *const i32 as usize { //~ ERROR casting pointers to integers in constants
21 LL | |             0 => 42, //~ ERROR constant contains unimplemented expression type
22    | |             - "pointer arithmetic or comparison" needs an rfc before being allowed inside constants
23 LL | |             //~^ NOTE "pointer arithmetic or comparison" needs an rfc before being allowed
24 LL | |             n => n,
25 LL | |         }
26 LL | |     }];
27    | |_____^
28
29 error: aborting due to 3 previous errors
30
31 Some errors occurred: E0019, E0080, E0658.
32 For more information about an error, try `rustc --explain E0019`.