aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/test_data/parser/inline/ok/0109_label.rs
blob: 48e83f263b9127912c63a595de5086168ec0d7c4 (plain)
1
2
3
4
5
fn foo() {
    'a: loop {}
    'b: while true {}
    'c: for x in () {}
}