2022-04-26 10:43:00 +00:00
|
|
|
error[E0133]: call to unsafe function is unsafe and requires unsafe function or block
|
2021-03-14 19:11:37 +00:00
|
|
|
--> $DIR/unsafe-const-fn.rs:10:18
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2018-02-23 00:42:32 +00:00
|
|
|
LL | const VAL: u32 = dummy(0xFFFF);
|
2022-04-24 12:42:30 +00:00
|
|
|
| ^^^^^^^^^^^^^ call to unsafe function
|
2018-07-10 08:52:05 +00:00
|
|
|
|
|
|
|
|
= note: consult the function's documentation for information on how to avoid undefined behavior
|
2017-12-10 19:47:55 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2017-12-10 19:47:55 +00:00
|
|
|
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about this error, try `rustc --explain E0133`.
|