]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues-71798.stderr
Auto merge of #75936 - sdroege:chunks-exact-construction-bounds-check, r=nagisa
[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 LL |     *x
13    |     -- this returned value is of type `u32`
14    |
15    = help: the trait `std::future::Future` is not implemented for `u32`
16    = note: the return type of a function must have a statically known size
17
18 error: aborting due to 2 previous errors
19
20 Some errors have detailed explanations: E0277, E0425.
21 For more information about an error, try `rustc --explain E0277`.