aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/test_data/parser/inline/ok/0008_path_part.rs
blob: f6e32c7c1493a36389b207b27572de2004670e62 (plain)
1
2
3
4
5
6
fn foo() {
    let foo::Bar = ();
    let ::Bar = ();
    let Bar { .. } = ();
    let Bar(..) = ();
}