2024-09-11 18:22:37 -04:00
|
|
|
error: functions cannot be both `const` and `gen`
|
2024-11-22 07:20:22 -08:00
|
|
|
--> $DIR/const_gen_fn.rs:5:1
|
2024-09-11 18:22:37 -04:00
|
|
|
|
|
|
|
|
|
LL | const gen fn a() {}
|
|
|
|
|
| ^^^^^-^^^----------
|
|
|
|
|
| | |
|
|
|
|
|
| | `gen` because of this
|
|
|
|
|
| `const` because of this
|
|
|
|
|
|
|
|
|
|
error: functions cannot be both `const` and `async gen`
|
2024-11-22 07:20:22 -08:00
|
|
|
--> $DIR/const_gen_fn.rs:8:1
|
2024-09-11 18:22:37 -04:00
|
|
|
|
|
|
|
|
|
LL | const async gen fn b() {}
|
|
|
|
|
| ^^^^^-^^^^^^^^^----------
|
|
|
|
|
| | |
|
|
|
|
|
| | `async gen` because of this
|
|
|
|
|
| `const` because of this
|
|
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|