summaryrefslogtreecommitdiffstats
path: root/src/tools/rust-analyzer/crates/parser/test_data/parser/inline/ok/0137_await_expr.rs
blob: d2ba89ca60758e4c68c20f6e29b6d9c0b9639184 (plain)
1
2
3
4
5
fn foo() {
    x.await;
    x.0.await;
    x.0().await?.hello();
}