summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/recursive-async-impl-trait-type.rs
blob: 60b34d3a1741586e52a328cdc40a08d4ec1bdfe7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// revisions: no_drop_tracking drop_tracking drop_tracking_mir
// [drop_tracking] compile-flags: -Zdrop-tracking
// [drop_tracking_mir] compile-flags: -Zdrop-tracking-mir
// 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() {}