2022-04-24 07:08:23 -05:00
|
|
|
error[E0133]: call to unsafe function `S::f` is unsafe and requires unsafe function or block
|
2021-03-14 14:11:37 -05:00
|
|
|
--> $DIR/async-unsafe-fn-call-in-safe.rs:14:5
|
2019-07-11 22:32:39 -05:00
|
|
|
|
|
|
|
|
LL | S::f();
|
2022-04-24 07:42:30 -05:00
|
|
|
| ^^^^^^ call to unsafe function
|
2019-07-11 22:32:39 -05:00
|
|
|
|
|
|
|
|
= note: consult the function's documentation for information on how to avoid undefined behavior
|
|
|
|
|
2022-04-24 07:08:23 -05:00
|
|
|
error[E0133]: call to unsafe function `f` is unsafe and requires unsafe function or block
|
2022-04-26 05:43:00 -05:00
|
|
|
--> $DIR/async-unsafe-fn-call-in-safe.rs:17:5
|
2019-07-11 22:32:39 -05:00
|
|
|
|
|
|
|
|
LL | f();
|
2022-04-24 07:42:30 -05:00
|
|
|
| ^^^ call to unsafe function
|
2019-07-11 22:32:39 -05:00
|
|
|
|
|
|
|
|
= note: consult the function's documentation for information on how to avoid undefined behavior
|
|
|
|
|
2023-10-05 09:57:14 -05:00
|
|
|
error[E0133]: call to unsafe function `S::f` is unsafe and requires unsafe function or block
|
|
|
|
--> $DIR/async-unsafe-fn-call-in-safe.rs:23:5
|
|
|
|
|
|
|
|
|
LL | S::f();
|
|
|
|
| ^^^^^^ call to unsafe function
|
|
|
|
|
|
|
|
|
= note: consult the function's documentation for information on how to avoid undefined behavior
|
|
|
|
|
|
|
|
error[E0133]: call to unsafe function `f` is unsafe and requires unsafe function or block
|
|
|
|
--> $DIR/async-unsafe-fn-call-in-safe.rs:26:5
|
|
|
|
|
|
|
|
|
LL | f();
|
|
|
|
| ^^^ call to unsafe function
|
|
|
|
|
|
|
|
|
= note: consult the function's documentation for information on how to avoid undefined behavior
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
2019-07-11 22:32:39 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0133`.
|