summaryrefslogtreecommitdiff
path: root/tests/ui/type-alias-impl-trait/issue-98604.stderr
blob: af758d8099f88c37f3d56029e66c7480b5502f21 (plain)
1
2
3
4
5
6
7
8
9
10
11
error[E0271]: expected `test` to be a fn item that returns `Pin<Box<dyn Future<Output = ()>>>`, but it returns `impl Future<Output = ()>`
  --> $DIR/issue-98604.rs:9:5
   |
LL |     Box::new(test) as AsyncFnPtr;
   |     ^^^^^^^^^^^^^^ expected `Pin<Box<dyn Future<Output = ()>>>`, found future
   |
   = note: required for the cast from `Box<fn() -> impl Future<Output = ()> {test}>` to `Box<(dyn Fn() -> Pin<Box<(dyn Future<Output = ()> + 'static)>> + 'static)>`

error: aborting due to previous error

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