]> git.lizzy.rs Git - rust.git/blob - src/test/ui/impl-trait/issues/issue-78722.stderr
Merge commit 'd3a2366ee877075c59b38bd8ced55f224fc7ef51' into sync_cg_clif-2022-07-26
[rust.git] / src / test / ui / impl-trait / issues / issue-78722.stderr
1 error[E0658]: `async` blocks are not allowed in constants
2   --> $DIR/issue-78722.rs:13:20
3    |
4 LL |         let f: F = async { 1 };
5    |                    ^^^^^^^^^^^
6    |
7    = note: see issue #85368 <https://github.com/rust-lang/rust/issues/85368> for more information
8    = help: add `#![feature(const_async_blocks)]` to the crate attributes to enable
9
10 error[E0493]: destructors cannot be evaluated at compile-time
11   --> $DIR/issue-78722.rs:13:13
12    |
13 LL |         let f: F = async { 1 };
14    |             ^ constants cannot evaluate destructors
15 ...
16 LL |     }],
17    |     - value is dropped here
18
19 error[E0271]: type mismatch resolving `<impl Future<Output = ()> as Future>::Output == u8`
20   --> $DIR/issue-78722.rs:9:30
21    |
22 LL |         fn concrete_use() -> F {
23    |                              ^ expected `()`, found `u8`
24
25 error: aborting due to 3 previous errors
26
27 Some errors have detailed explanations: E0271, E0493, E0658.
28 For more information about an error, try `rustc --explain E0271`.