blob: d1fd4eab0fc3c1802ea3653734a2cd3930b02914 [file] [log] [blame]
error: `yield` can only be used in `#[coroutine]` closures, or `gen` blocks
--> $DIR/yield-in-static.rs:3:18
|
LL | static B: u8 = { yield 3u8; 3u8};
| ^^^^^^^^^
error[E0627]: yield expression outside of coroutine literal
--> $DIR/yield-in-static.rs:3:18
|
LL | static B: u8 = { yield 3u8; 3u8};
| ^^^^^^^^^
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0627`.