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

15 lines
363 B
Text
Raw Normal View History

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