]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues-71798.stderr
Sync rust-lang/portable-simd@03f6fbb21e6050da2a05b3ce8f480c020b384916
[rust.git] / src / test / ui / issues-71798.stderr
1 error[E0425]: cannot find value `u` in this scope
2   --> $DIR/issues-71798.rs:6:24
3    |
4 LL |     let _ = test_ref & u;
5    |                        ^ not found in this scope
6
7 error[E0277]: `u32` is not a future
8   --> $DIR/issues-71798.rs:1:25
9    |
10 LL | fn test_ref(x: &u32) -> impl std::future::Future<Output = u32> + '_ {
11    |                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `u32` is not a future
12    |
13    = help: the trait `Future` is not implemented for `u32`
14    = note: u32 must be a future or must implement `IntoFuture` to be awaited
15
16 error: aborting due to 2 previous errors
17
18 Some errors have detailed explanations: E0277, E0425.
19 For more information about an error, try `rustc --explain E0277`.