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

7 lines
103 B
Rust
Raw Normal View History

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