about summary refs log tree commit diff
path: root/tests/ui/label/continue-pointing-to-block-ice-121623.stderr
blob: a484fb629d181914b165f90a00a1a311cc44895e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0696]: `continue` pointing to a labeled block
  --> $DIR/continue-pointing-to-block-ice-121623.rs:7:13
   |
LL |           _ => 'b: {
   |  ______________-
LL | |             continue 'b;
   | |             ^^^^^^^^^^^ labeled blocks cannot be `continue`'d
LL | |
LL | |         }
   | |_________- labeled block the `continue` points to

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0696`.