summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/recursive-async-impl-trait-type.rs
blob: edc4cb8ac5df37153345b5a8453538bb330da90a (plain)
1
2
3
4
5
6
7
8
9
10
// edition:2018
// Test that impl trait does not allow creating recursive types that are
// otherwise forbidden when using `async` and `await`.

async fn recursive_async_function() -> () {
    //~^ ERROR recursion in an `async fn` requires boxing
    recursive_async_function().await;
}

fn main() {}