rust/tests/ui/generator/yield-in-const.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
276 B
Plaintext
Raw Normal View History

error[E0627]: yield expression outside of generator literal
2018-12-25 15:56:47 +00:00
--> $DIR/yield-in-const.rs:3:17
2017-08-09 23:37:56 +00:00
|
2018-02-23 00:42:32 +00:00
LL | const A: u8 = { yield 3u8; 3u8};
2017-08-09 23:37:56 +00:00
| ^^^^^^^^^
error: aborting due to previous error
2017-08-09 23:37:56 +00:00
For more information about this error, try `rustc --explain E0627`.