aboutsummaryrefslogtreecommitdiff
path: root/crates/syntax/test_data/parser/inline/ok/0053_path_expr.rs
blob: 333ebabef48ae9f626800cc5efe768513e0e973e (plain)
1
2
3
4
5
6
fn foo() {
    let _ = a;
    let _ = a::b;
    let _ = ::a::<b>;
    let _ = format!();
}