blob: 9a567094c82f14cf5655c034c82cae3a133fbb17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
|