Skip to repository content57 lines · 1.7 KB · text
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T02:57:42.948Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
async_block_without_await.stderr
1error: this `async` block contains no `.await`
2 --> $DIR/async_block_without_await.rs:17:14
3 |
4LL | let _f = async {};
5 | ^^^^^^^^
6 |
7 = help: consider removing the `async` block or adding the missing `.await`
8 = note: `-D async-block-without-await` implied by `-D warnings`
9 = help: to override `-D warnings` add `#[allow(async_block_without_await)]`
10
11error: this `async` block contains no `.await`
12 --> $DIR/async_block_without_await.rs:20:14
13 |
14LL | let _f = async { 42 };
15 | ^^^^^^^^^^^^
16 |
17 = help: consider removing the `async` block or adding the missing `.await`
18
19error: this `async` block contains no `.await`
20 --> $DIR/async_block_without_await.rs:23:14
21 |
22LL | let _f = async move {
23 | ______________^
24LL | | let x = 1;
25LL | | x + 2
26LL | | };
27 | |_____^
28 |
29 = help: consider removing the `async` block or adding the missing `.await`
30
31error: this `async` block contains no `.await`
32 --> $DIR/async_block_without_await.rs:29:14
33 |
34LL | let _f = async { sync_fn() };
35 | ^^^^^^^^^^^^^^^^^^^
36 |
37 = help: consider removing the `async` block or adding the missing `.await`
38
39error: this `async` block contains no `.await`
40 --> $DIR/async_block_without_await.rs:34:21
41 |
42LL | let inner = async { 42 };
43 | ^^^^^^^^^^^^
44 |
45 = help: consider removing the `async` block or adding the missing `.await`
46
47error: this `async` block contains no `.await`
48 --> $DIR/async_block_without_await.rs:77:9
49 |
50LL | async { 42 }
51 | ^^^^^^^^^^^^
52 |
53 = help: consider removing the `async` block or adding the missing `.await`
54
55error: aborting due to 6 previous errors
56
57