1
Fork 0
rust/tests/ui/coroutine/const_gen_fn.stderr
2024-11-22 11:12:15 -08:00

20 lines
490 B
Text

error: functions cannot be both `const` and `gen`
--> $DIR/const_gen_fn.rs:5:1
|
LL | const gen fn a() {}
| ^^^^^-^^^----------
| | |
| | `gen` because of this
| `const` because of this
error: functions cannot be both `const` and `async gen`
--> $DIR/const_gen_fn.rs:8:1
|
LL | const async gen fn b() {}
| ^^^^^-^^^^^^^^^----------
| | |
| | `async gen` because of this
| `const` because of this
error: aborting due to 2 previous errors