rust/tests/ui/coroutine/yield-in-function.stderr

10 lines
259 B
Plaintext
Raw Normal View History

2023-10-19 16:46:28 -05:00
error[E0627]: yield expression outside of coroutine literal
2018-12-25 09:56:47 -06:00
--> $DIR/yield-in-function.rs:3:13
2017-08-09 18:37:56 -05:00
|
2018-02-22 18:42:32 -06:00
LL | fn main() { yield; }
2017-08-09 18:37:56 -05:00
| ^^^^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0627`.