rust/tests/ui/label/label_break_value_illegal_uses.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
557 B
Rust
Raw Normal View History

// run-rustfix
2018-05-12 04:33:33 -05:00
2018-08-19 08:30:23 -05:00
// These are forbidden occurrences of label-break-value
#[allow(unused_unsafe)]
fn labeled_unsafe() {
unsafe 'b: {} //~ ERROR block label not supported here
}
fn labeled_if() {
if true 'b: {} //~ ERROR block label not supported here
}
fn labeled_else() {
if true {} else 'b: {} //~ ERROR block label not supported here
}
fn labeled_match() {
match false 'b: { //~ ERROR block label not supported here
_ => {}
}
}
fn main() {
labeled_unsafe();
labeled_if();
labeled_else();
labeled_match();
}