You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rollup merge of #118891 - compiler-errors:async-gen-blocks, r=eholk
Actually parse async gen blocks correctly
1. I got the control flow in `parse_expr_bottom` messed up, and obviously forgot a test for `async gen`, so we weren't actually ever parsing it correctly.
2. I forgot to gate the span for `async gen {}`, so even if we did parse it, we wouldn't have correctly denied it in `cfg(FALSE)`.
r? eholk
Copy file name to clipboardexpand all lines: tests/ui/feature-gates/feature-gate-gen_blocks.e2024.stderr
+28-4
Original file line number
Diff line number
Diff line change
@@ -2,16 +2,34 @@ error[E0658]: gen blocks are experimental
2
2
--> $DIR/feature-gate-gen_blocks.rs:5:5
3
3
|
4
4
LL | gen {};
5
-
| ^^^^^
5
+
| ^^^
6
6
|
7
7
= note: see issue #117078 <https://github.com/rust-lang/rust/issues/117078> for more information
8
8
= help: add `#![feature(gen_blocks)]` to the crate attributes to enable
9
9
10
10
error[E0658]: gen blocks are experimental
11
-
--> $DIR/feature-gate-gen_blocks.rs:13:5
11
+
--> $DIR/feature-gate-gen_blocks.rs:12:5
12
+
|
13
+
LL | async gen {};
14
+
| ^^^^^^^^^
15
+
|
16
+
= note: see issue #117078 <https://github.com/rust-lang/rust/issues/117078> for more information
17
+
= help: add `#![feature(gen_blocks)]` to the crate attributes to enable
18
+
19
+
error[E0658]: gen blocks are experimental
20
+
--> $DIR/feature-gate-gen_blocks.rs:22:5
12
21
|
13
22
LL | gen {};
14
-
| ^^^^^
23
+
| ^^^
24
+
|
25
+
= note: see issue #117078 <https://github.com/rust-lang/rust/issues/117078> for more information
26
+
= help: add `#![feature(gen_blocks)]` to the crate attributes to enable
27
+
28
+
error[E0658]: gen blocks are experimental
29
+
--> $DIR/feature-gate-gen_blocks.rs:25:5
30
+
|
31
+
LL | async gen {};
32
+
| ^^^^^^^^^
15
33
|
16
34
= note: see issue #117078 <https://github.com/rust-lang/rust/issues/117078> for more information
17
35
= help: add `#![feature(gen_blocks)]` to the crate attributes to enable
@@ -22,7 +40,13 @@ error[E0282]: type annotations needed
22
40
LL | gen {};
23
41
| ^^ cannot infer type
24
42
25
-
error: aborting due to 3 previous errors
43
+
error[E0282]: type annotations needed
44
+
--> $DIR/feature-gate-gen_blocks.rs:12:15
45
+
|
46
+
LL | async gen {};
47
+
| ^^ cannot infer type
48
+
49
+
error: aborting due to 6 previous errors
26
50
27
51
Some errors have detailed explanations: E0282, E0658.
28
52
For more information about an error, try `rustc --explain E0282`.
0 commit comments