rust-analyzer/tests/data/parser/inline/0072_path_part.rs

7 lines
103 B
Rust
Raw Normal View History

2018-08-04 12:47:45 +00:00
fn foo() {
let foo::Bar = ();
let ::Bar = ();
let Bar { .. } = ();
let Bar(..) = ();
}