summary refs log tree commit diff
path: root/src/test/ui/generator/yield-in-const.stderr
blob: 8a265c065b988509086e85f42067b505af98c12f (plain)
1
2
3
4
5
6
7
8
9
10
error[E0601]: main function not found

error[E0627]: yield statement outside of generator literal
  --> $DIR/yield-in-const.rs:13:17
   |
13 | const A: u8 = { yield 3u8; 3u8};
   |                 ^^^^^^^^^

error: aborting due to 2 previous errors