blob: a4925c8619edcc54df8324d38355823cd18d7f67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error: invalid label name `'_`
--> $DIR/label-underscore.rs:2:5
|
LL | '_: loop { //~ ERROR invalid label name `'_`
| ^^
error: invalid label name `'_`
--> $DIR/label-underscore.rs:3:15
|
LL | break '_ //~ ERROR invalid label name `'_`
| ^^
error: aborting due to 2 previous errors
|