aboutsummaryrefslogtreecommitdiff
path: root/crates/syntax/test_data/parser/inline/ok/0042_call_expr.rs
blob: ffbf46d6d1f39d2640229b49e847cfe750ad7d44 (plain)
1
2
3
4
5
6
fn foo() {
    let _ = f();
    let _ = f()(1)(1, 2,);
    let _ = f(<Foo>::func());
    f(<Foo as Trait>::func());
}