]> git.lizzy.rs Git - rust.git/blob - src/test/ui/async-await/in-trait/fn-not-async-err.stderr
Rollup merge of #105715 - estebank:unsatisfied-bounds-label, r=compiler-errors
[rust.git] / src / test / ui / async-await / in-trait / fn-not-async-err.stderr
1 error: method `foo` should be async because the method from the trait is async
2   --> $DIR/fn-not-async-err.rs:11:5
3    |
4 LL |     async fn foo(&self) -> i32;
5    |     --------------------------- required because the trait method is async
6 ...
7 LL |     fn foo(&self) -> i32 {
8    |     ^^^^^^^^^^^^^^^^^^^^
9
10 error: aborting due to previous error
11