]> git.lizzy.rs Git - rust.git/blob - tests/ui/async-await/in-trait/fn-not-async-err.stderr
Rollup merge of #106973 - oli-obk:tait_ice_closure_in_impl_header, r=lcnr
[rust.git] / tests / 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