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-static.rs:3:18
|
2017-08-09 18:37:56 -05:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | static B: u8 = { yield 3u8; 3u8};
|
2017-08-09 18:37:56 -05:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2017-08-09 18:37:56 -05:00
|
|
|
|
2019-12-23 07:07:13 -06:00
|
|
|
For more information about this error, try `rustc --explain E0627`.
|