about summary refs log tree commit diff
path: root/tests/ui/coroutine/yield-in-static.stderr
blob: d1fd4eab0fc3c1802ea3653734a2cd3930b02914 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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`.