summaryrefslogtreecommitdiffstats
path: root/src/test/ui/async-await/async-unsafe-fn-call-in-safe.thir.stderr
blob: 68d97d3fd7d5fd178bd33564686378920e0f821d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error[E0133]: call to unsafe function `S::f` is unsafe and requires unsafe function or block
  --> $DIR/async-unsafe-fn-call-in-safe.rs:14: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:17: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 2 previous errors

For more information about this error, try `rustc --explain E0133`.