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