2023-10-19 21:46:28 +00:00
|
|
|
error[E0627]: yield expression outside of coroutine literal
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/yield-in-const.rs:3:17
|
2017-08-09 16:37:56 -07:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | const A: u8 = { yield 3u8; 3u8};
|
2017-08-09 16:37:56 -07:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2017-08-09 16:37:56 -07:00
|
|
|
|
2019-12-23 21:07:13 +08:00
|
|
|
For more information about this error, try `rustc --explain E0627`.
|