rust-analyzer/tests/data/parser/inline/0039_path_expr.rs

7 lines
91 B
Rust
Raw Normal View History

2018-07-30 14:02:51 +00:00
fn foo() {
let _ = a;
let _ = a::b;
let _ = ::a::<b>;
2018-08-05 11:16:38 +00:00
let _ = format!();
2018-07-30 14:02:51 +00:00
}