2019-07-12 03:32:39 +00:00
|
|
|
error[E0133]: call to unsafe function is unsafe and requires unsafe function or block
|
2019-08-02 01:48:43 +00:00
|
|
|
--> $DIR/async-unsafe-fn-call-in-safe.rs:12:5
|
2019-07-12 03:32:39 +00:00
|
|
|
|
|
|
|
|
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 is unsafe and requires unsafe function or block
|
2019-08-02 01:48:43 +00:00
|
|
|
--> $DIR/async-unsafe-fn-call-in-safe.rs:13:5
|
2019-07-12 03:32:39 +00:00
|
|
|
|
|
|
|
|
LL | f();
|
|
|
|
| ^^^ call to unsafe function
|
|
|
|
|
|
|
|
|
= note: consult the function's documentation for information on how to avoid undefined behavior
|
|
|
|
|
2019-07-12 04:43:52 +00:00
|
|
|
error[E0133]: call to unsafe function is unsafe and requires unsafe function or block
|
2019-08-02 01:48:43 +00:00
|
|
|
--> $DIR/async-unsafe-fn-call-in-safe.rs:17:5
|
2019-07-12 04:43:52 +00:00
|
|
|
|
|
|
|
|
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 is unsafe and requires unsafe function or block
|
2019-08-02 01:48:43 +00:00
|
|
|
--> $DIR/async-unsafe-fn-call-in-safe.rs:18:5
|
2019-07-12 04:43:52 +00:00
|
|
|
|
|
|
|
|
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-12 03:32:39 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0133`.
|