21 lines
708 B
Text
21 lines
708 B
Text
error: expected one of `move`, `use`, `{`, `|`, or `||`, found `gen`
|
|
--> $DIR/feature-gate-gen_blocks.rs:15:11
|
|
|
|
|
LL | async gen {};
|
|
| ^^^ expected one of `move`, `use`, `{`, `|`, or `||`
|
|
|
|
error: expected one of `move`, `use`, `{`, `|`, or `||`, found `gen`
|
|
--> $DIR/feature-gate-gen_blocks.rs:29:11
|
|
|
|
|
LL | async gen {};
|
|
| ^^^ expected one of `move`, `use`, `{`, `|`, or `||`
|
|
|
|
error[E0422]: cannot find struct, variant or union type `gen` in this scope
|
|
--> $DIR/feature-gate-gen_blocks.rs:7:5
|
|
|
|
|
LL | gen {};
|
|
| ^^^ not found in this scope
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0422`.
|