rust/tests/ui/consts/const-eval/ref_to_int_match.64bit.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
833 B
Plaintext
Raw Normal View History

2022-09-21 11:05:20 +00:00
error[E0080]: evaluation of constant value failed
--> $DIR/ref_to_int_match.rs:25:27
|
2019-03-09 12:03:44 +00:00
LL | const BAR: Int = unsafe { Foo { r: &42 }.f };
2022-09-21 11:05:20 +00:00
| ^^^^^^^^^^^^^^^^ unable to turn pointer into raw bytes
|
2022-08-27 21:46:14 +00:00
= help: this code performed an operation that depends on the underlying bytes representing a pointer
= help: the absolute address of a pointer is not known at compile-time, so such operations are not supported
error: could not evaluate constant pattern
2021-06-03 07:31:27 +00:00
--> $DIR/ref_to_int_match.rs:7:14
|
2019-03-09 12:03:44 +00:00
LL | 10..=BAR => {},
| ^^^
2020-01-08 17:02:10 +00:00
error: could not evaluate constant pattern
2021-06-03 07:31:27 +00:00
--> $DIR/ref_to_int_match.rs:7:14
2020-01-08 17:02:10 +00:00
|
LL | 10..=BAR => {},
| ^^^
error: aborting due to 3 previous errors
2022-09-21 11:05:20 +00:00
For more information about this error, try `rustc --explain E0080`.