2017-08-09 16:37:56 -07:00
|
|
|
error[E0601]: main function not found
|
|
|
|
|
|
|
|
error[E0627]: yield statement outside of generator literal
|
|
|
|
--> $DIR/yield-in-const.rs:13:17
|
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | const A: u8 = { yield 3u8; 3u8};
|
2017-08-09 16:37:56 -07:00
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2018-02-19 21:40:25 +01:00
|
|
|
You've got a few errors: E0601, E0627
|
|
|
|
If you want more information on an error, try using "rustc --explain E0601"
|