Files
rust/tests/ui/consts/const-extern-fn/const-extern-fn-min-const-fn.stderr

12 lines
391 B
Plaintext
Raw Normal View History

2021-10-03 15:53:02 +09:00
error: pointers cannot be cast to integers during const eval
2024-08-29 15:33:34 +02:00
--> $DIR/const-extern-fn-min-const-fn.rs:2:5
|
2024-08-29 15:33:34 +02:00
LL | val as usize;
| ^^^^^^^^^^^^
|
= note: at compile-time, pointers do not have an integer value
= note: avoiding this restriction via `transmute`, `union`, or raw pointers leads to compile-time undefined behavior
error: aborting due to 1 previous error