rust/crates/syntax/test_data/parser/inline/ok/0109_label.rs
2020-08-12 18:30:53 +02:00

5 lines
74 B
Rust

fn foo() {
'a: loop {}
'b: while true {}
'c: for x in () {}
}