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