1
Fork 0
rust/src/test/ui/label/label-underscore.stderr

15 lines
333 B
Text
Raw Normal View History

2018-08-08 14:28:26 +02:00
error: invalid label name `'_`
--> $DIR/label-underscore.rs:12:5
|
LL | '_: loop { //~ ERROR invalid label name `'_`
| ^^
error: invalid label name `'_`
--> $DIR/label-underscore.rs:13:15
|
LL | break '_ //~ ERROR invalid label name `'_`
| ^^
error: aborting due to 2 previous errors