rust/src/test/ui/label/label-underscore.stderr

15 lines
331 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error: invalid label name `'_`
2018-12-25 09:56:47 -06:00
--> $DIR/label-underscore.rs:2:5
2018-08-08 07:28:26 -05:00
|
LL | '_: loop { //~ ERROR invalid label name `'_`
| ^^
error: invalid label name `'_`
2018-12-25 09:56:47 -06:00
--> $DIR/label-underscore.rs:3:15
2018-08-08 07:28:26 -05:00
|
LL | break '_ //~ ERROR invalid label name `'_`
| ^^
error: aborting due to 2 previous errors