]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues-71798.stderr
Detect pub fn attr wrong order like `async pub`
[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
15 error: aborting due to 2 previous errors
16
17 Some errors have detailed explanations: E0277, E0425.
18 For more information about an error, try `rustc --explain E0277`.