Bless ui tests

This commit is contained in:
Oli Scherer 2022-03-01 16:03:27 +00:00
parent 360edd611d
commit 88296432d3

View File

@ -28,6 +28,15 @@ note: required by a bound in `from_generator`
LL | T: Generator<ResumeTy, Yield = ()>, LL | T: Generator<ResumeTy, Yield = ()>,
| ^^^^^^^^^^ required by this bound in `from_generator` | ^^^^^^^^^^ required by this bound in `from_generator`
error: aborting due to 2 previous errors error[E0280]: the requirement `<impl Future<Output = [async output]> as Future>::Output == u32` is not satisfied
--> $DIR/async.rs:7:29
|
LL | async fn foo(x: u32) -> u32 {
| _____________________________^
LL | | x
LL | | }
| |_^
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0277`. For more information about this error, try `rustc --explain E0277`.