rust/src/test/ui/issues/issue-28105.stderr
Vadim Petrochenkov fa72a81bea Update tests
2019-03-11 23:10:26 +03:00

16 lines
389 B
Plaintext

error[E0268]: `continue` outside of loop
--> $DIR/issue-28105.rs:4:5
|
LL | continue
| ^^^^^^^^ cannot break outside of a loop
error[E0268]: `break` outside of loop
--> $DIR/issue-28105.rs:6:5
|
LL | break
| ^^^^^ cannot break outside of a loop
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0268`.