summaryrefslogtreecommitdiffstats
path: root/src/test/ui/async-await/async-trait-fn.stderr
blob: 1eb8969a80d20047db21c886240c0dc11aebc73d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
error[E0706]: functions in traits cannot be declared `async`
  --> $DIR/async-trait-fn.rs:3:5
   |
LL |     async fn foo() {}
   |     -----^^^^^^^^^^^^
   |     |
   |     `async` because of this
   |
   = note: `async` trait functions are not currently supported
   = note: consider using the `async-trait` crate: https://crates.io/crates/async-trait

error[E0706]: functions in traits cannot be declared `async`
  --> $DIR/async-trait-fn.rs:4:5
   |
LL |     async fn bar(&self) {}
   |     -----^^^^^^^^^^^^^^^^^
   |     |
   |     `async` because of this
   |
   = note: `async` trait functions are not currently supported
   = note: consider using the `async-trait` crate: https://crates.io/crates/async-trait

error[E0706]: functions in traits cannot be declared `async`
  --> $DIR/async-trait-fn.rs:5:5
   |
LL |       async fn baz() {
   |       ^----
   |       |
   |  _____`async` because of this
   | |
LL | |         // Nested item must not ICE.
LL | |         fn a() {}
LL | |     }
   | |_____^
   |
   = note: `async` trait functions are not currently supported
   = note: consider using the `async-trait` crate: https://crates.io/crates/async-trait

error: aborting due to 3 previous errors

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